From: Bruce Momjian Date: Wed, 19 May 2004 05:20:27 +0000 (+0000) Subject: Add MinGW to cases where libdir should be used for regression tests: X-Git-Tag: REL8_0_0BETA1~609 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba71d824d5caec7656ebd7eb12ad17519ad41627;p=thirdparty%2Fpostgresql.git Add MinGW to cases where libdir should be used for regression tests: case $host_platform in *-*-cygwin*|*-*-mingw) PATH=$libdir:$PATH export PATH ;; esac --- diff --git a/src/test/regress/pg_regress.sh b/src/test/regress/pg_regress.sh index 562978bed1e..d1e61c95c06 100644 --- 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.42 2004/05/03 13:25:23 momjian Exp $ +# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.43 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 ;;