1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Use $build_platform for PWD flag test, per suggestion from Peter.

This commit is contained in:
Bruce Momjian
2004-05-02 21:30:08 +00:00
parent 5d7aec483c
commit 0142c00180

View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.40 2004/05/02 10:24:51 momjian Exp $ # $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.41 2004/05/02 21:30:08 momjian Exp $
me=`basename $0` me=`basename $0`
: ${TMPDIR=/tmp} : ${TMPDIR=/tmp}
@ -211,8 +211,8 @@ esac
# Set up pwd to give a win32 happy pathname # Set up pwd to give a win32 happy pathname
# ---------- # ----------
case `uname` in case $build_platform in
MINGW32*) *-*-mingw32*)
PWDFLAGS=-W;; PWDFLAGS=-W;;
*) *)
PWDFLAGS=;; PWDFLAGS=;;