From: Mark Cave-Ayland Date: Thu, 30 Jul 2009 16:03:55 +0000 (+0000) Subject: Remove quotes from PATH in regression Makefile, as it seems that the last MingW hack... X-Git-Tag: 1.5.0b1~570 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=adf4763a73977237eb176dbb7ea14782cdf253e7;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/trunk@4338 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/Makefile.in b/regress/Makefile.in index 47572ffdc..70648d26f 100644 --- a/regress/Makefile.in +++ b/regress/Makefile.in @@ -15,7 +15,7 @@ srcdir=$(shell pwd) # # Put path from pg_config into front of search path # -PATH := "$(PGSQL_BINDIR):$(PATH)" +PATH := $(PGSQL_BINDIR):$(PATH) export PATH