]> granicus.if.org Git - postgis/commitdiff
Fix for Windows combining stdout/stderr when executing the $(shell) command.
authorMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Sat, 18 Jul 2009 20:01:52 +0000 (20:01 +0000)
committerMark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
Sat, 18 Jul 2009 20:01:52 +0000 (20:01 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4322 b70326c6-7e19-0410-871a-916f4a2858ee

regress/Makefile.in

index 7303d6895314153173a9938b9607fe4d295adafa..47572ffdc4ebc79a4b5d060bb9dc403ee9c06954 100644 (file)
@@ -8,7 +8,7 @@ POSTGIS_PROJ_VERSION=@POSTGIS_PROJ_VERSION@
 # to the directory and then use "pwd" to return the path. This
 # ensures that the returned path is in MSYS format, otherwise
 # colons in drive letters will break PATH.
-PGSQL_BINDIR=$(shell pushd "@PGSQL_BINDIR@" && pwd && popd)
+PGSQL_BINDIR=$(shell pushd "@PGSQL_BINDIR@" > /dev/null && pwd && popd > /dev/null)
 
 srcdir=$(shell pwd)