From: Mark Cave-Ayland Date: Thu, 30 Jul 2009 16:03:09 +0000 (+0000) Subject: Remove quotes from PATH in regression Makefile, as it seems that the last MingW hack... X-Git-Tag: 1.4.1rc1~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4178b09a296a786ebc30c74d4846015ea051cb7;p=postgis Remove quotes from PATH in regression Makefile, as it seems that the last MingW hack doesn't need this any more. git-svn-id: http://svn.osgeo.org/postgis/branches/1.4@4337 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/Makefile.in b/regress/Makefile.in index f68bc023a..f7ab74d98 100644 --- a/regress/Makefile.in +++ b/regress/Makefile.in @@ -13,7 +13,7 @@ PGSQL_BINDIR=$(shell pushd "@PGSQL_BINDIR@" > /dev/null && pwd && popd > /dev/nu # # Put path from pg_config into front of search path # -PATH := "$(PGSQL_BINDIR):$(PATH)" +PATH := $(PGSQL_BINDIR):$(PATH) export PATH