Commit e4a03f9e authored by Bruce Momjian's avatar Bruce Momjian

Set PWDFLAGS based on test platform, not target platform.

Andrew Dunstan
parent 14a53308
#! /bin/sh #! /bin/sh
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.39 2004/05/02 04:27:37 momjian Exp $ # $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.40 2004/05/02 10:24:51 momjian Exp $
me=`basename $0` me=`basename $0`
: ${TMPDIR=/tmp} : ${TMPDIR=/tmp}
...@@ -211,8 +211,8 @@ esac ...@@ -211,8 +211,8 @@ esac
# Set up pwd to give a win32 happy pathname # Set up pwd to give a win32 happy pathname
# ---------- # ----------
case $host_platform in case `uname` in
*-*-mingw32*) MINGW32*)
PWDFLAGS=-W;; PWDFLAGS=-W;;
*) *)
PWDFLAGS=;; PWDFLAGS=;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment