Codebase list orafce / 8e5574d debian / tests / installcheck
8e5574d

Tree @8e5574d (Download .tar.gz)

installcheck @8e5574d

79f2ea8
 
e9f99ee
 
79f2ea8
8e5574d
 
79f2ea8
 
 
3f5b77a
2a0e7bf
e9f99ee
 
 
79f2ea8
#!/bin/sh

set -e

# to_multi_byte needs English, and UTF-8
. /usr/share/postgresql-common/pgcommon.sh
locale_gen en_US.UTF-8 UTF-8
export LC_ALL=en_US.utf8

for v in $(pg_buildext supported-versions); do
	rm -f orafunc.sql.in orafunc.sql
	make orafunc.sql PG_CONFIG=/usr/lib/postgresql/$v/bin/pg_config
	# ignore problems with createexplicitpipe and to_char on lucid
	# ($distribution is set in the apt.postgresql.org build environment)
	pg_buildext installcheck-$v || [ "$distribution" = "lucid" ]
done