We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c0ffb commit f8bdef0Copy full SHA for f8bdef0
src/test/regress/pg_regress.sh
@@ -1,5 +1,5 @@
1
#! /bin/sh
2
-# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.16 2001/01/02 02:13:48 tgl Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.17 2001/01/13 03:25:48 petere Exp $
3
4
me=`basename $0`
5
: ${TMPDIR=/tmp}
@@ -296,6 +296,15 @@ then
296
fi
297
export LD_LIBRARY_PATH
298
299
+ # ----------
300
+ # Windows needs shared libraries in PATH. (Only those linked into
301
+ # executables, not dlopen'ed ones)
302
303
+ case $host_platform in *-*-cygwin*)
304
+ PATH=$libdir:$PATH
305
+ export PATH
306
+ ;;
307
+ esac
308
309
if [ -d "$temp_install" ]; then
310
message "removing existing temp installation"
0 commit comments