projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb8c79a
)
Add MinGW to cases where libdir should be used for regression tests:
author
Bruce Momjian
<bruce@momjian.us>
Wed, 19 May 2004 05:20:27 +0000
(
05:20
+0000)
committer
Bruce Momjian
<bruce@momjian.us>
Wed, 19 May 2004 05:20:27 +0000
(
05:20
+0000)
case $host_platform in
*-*-cygwin*|*-*-mingw)
PATH=$libdir:$PATH
export PATH
;;
esac
src/test/regress/pg_regress.sh
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/pg_regress.sh
b/src/test/regress/pg_regress.sh
index 562978bed1e62bd0418debbe820940f9c6211bb1..d1e61c95c061c597868a492c345ed19e40238fb8 100644
(file)
--- a/
src/test/regress/pg_regress.sh
+++ b/
src/test/regress/pg_regress.sh
@@
-1,5
+1,5
@@
#! /bin/sh
-# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.4
2 2004/05/03 13:25:23
momjian Exp $
+# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.4
3 2004/05/19 05:20:27
momjian Exp $
me=`basename $0`
: ${TMPDIR=/tmp}
@@
-348,7
+348,7
@@
then
# executables, not dlopen'ed ones)
# ----------
case $host_platform in
- *-*-cygwin*)
+ *-*-cygwin*
|*-*-mingw
)
PATH=$libdir:$PATH
export PATH
;;