From 0ca5b8d4a9cbae3487f72c0c4a48af8cb9f9c75c Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Tue, 3 Feb 2004 22:04:56 +0000 Subject: [PATCH] Real DESTDIR changes this time. git-svn-id: http://svn.osgeo.org/postgis/trunk@437 b70326c6-7e19-0410-871a-916f4a2858ee --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 73e688587..dc8834b78 100644 --- a/Makefile +++ b/Makefile @@ -4,14 +4,18 @@ # Set USE_PROJ to 1 for Proj4 reprojection support # USE_PROJ=1 -PROJ_DIR=/usr/local +ifeq (${PROJ_DIR},) + PROJ_DIR=/usr/local +endif #--------------------------------------------------------------- # Set USE_GEOS to 1 for GEOS spatial predicate and operator # support # USE_GEOS=1 -GEOS_DIR=/usr/local +ifeq (${GEOS_DIR},) + GEOS_DIR=/usr/local +endif #--------------------------------------------------------------- # Set USE_STATS to 1 for new GiST statistics collection support -- 2.50.1