Codebase list orafce / e9f99ee
ignore problems with createexplicitpipe and to_char on lucid Christoph Berg 10 years ago
1 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 #!/bin/sh
1
2 set -e
13
24 if [ -f /etc/locale.gen ]; then
35 # Debian
1315 # to_multi_byte needs English, and UTF-8
1416 export LC_ALL=en_US.utf8
1517
16 set -e
1718 for v in $(pg_buildext supported-versions); do
1819 rm -f orafunc.sql.in orafunc.sql
1920 make orafunc.sql PG_CONFIG=/usr/lib/postgresql/$v/bin/pg_config
20 pg_buildext installcheck-$v
21 # ignore problems with createexplicitpipe and to_char on lucid
22 # ($distribution is set in the apt.postgresql.org build environment)
23 pg_buildext installcheck-$v || [ "$distribution" = "lucid" ]
2124 done