Index: pg_regress.sh =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/test/regress/pg_regress.sh,v retrieving revision 1.42 diff -c -w -r1.42 pg_regress.sh *** pg_regress.sh 3 May 2004 13:25:23 -0000 1.42 --- pg_regress.sh 7 May 2004 16:09:33 -0000 *************** *** 1,5 **** #! /bin/sh ! # $PostgreSQL: pgsql-server/src/test/regress/pg_regress.sh,v 1.42 2004/05/03 13:25:23 momjian Exp $ me=`basename $0` : ${TMPDIR=/tmp} --- 1,5 ---- #! /bin/sh ! # $PostgreSQL: pgsql-server/src/test/regress/pg_regress.sh,v 1.38 2004/01/08 20:04:41 neilc Exp $ me=`basename $0` : ${TMPDIR=/tmp} *************** *** 208,225 **** # ---------- - # Set up pwd to give a win32 happy pathname - # ---------- - - case $host_platform in - *-*-mingw32*) - PWDFLAGS=-W;; - *) - PWDFLAGS=;; - esac - - - # ---------- # Set backend timezone and datestyle explicitly # # To pass the horology test in its current form, the postmaster must be --- 208,213 ---- *************** *** 306,317 **** if [ x"$temp_install" != x"" ] then if echo x"$temp_install" | grep -v '^x/' >/dev/null 2>&1; then ! temp_install="`pwd $PWDFLAGS`/$temp_install" fi bindir=$temp_install/install/$bindir libdir=$temp_install/install/$libdir - pkglibdir=$temp_install/install/$pkglibdir datadir=$temp_install/install/$datadir PGDATA=$temp_install/data --- 294,313 ---- if [ x"$temp_install" != x"" ] then if echo x"$temp_install" | grep -v '^x/' >/dev/null 2>&1; then ! case `uname` in ! MINGW*) ! pkglibdir="`pwd -W`/$temp_install/install/$pkglibdir" ! temp_install="`pwd`/$temp_install" ! ;; ! *) ! temp_install="`pwd`/$temp_install" ! pkglibdir=$temp_install/install/$pkglibdir ! ;; ! esac fi bindir=$temp_install/install/$bindir libdir=$temp_install/install/$libdir datadir=$temp_install/install/$datadir PGDATA=$temp_install/data *************** *** 348,354 **** # executables, not dlopen'ed ones) # ---------- case $host_platform in ! *-*-cygwin*) PATH=$libdir:$PATH export PATH ;; --- 344,350 ---- # executables, not dlopen'ed ones) # ---------- case $host_platform in ! *-*-cygwin* | *-*-mingw32*) PATH=$libdir:$PATH export PATH ;;