[postgis-users] Help!!!

strk at refractions.net strk at refractions.net
Mon Oct 4 22:53:51 PDT 2004


On Mon, Oct 04, 2004 at 01:37:25PM -0700, Sergio Triana wrote:
> I installed PostgreSQL y PostGIS on Linux Red Hat 9.0, I'm trying to configure PostGIS, but it shows me the following error...
>  
> <./Makefile syntax error near unexpected token '${PROJ_DIR},' >
> < ./Makefile ifeq (${PROJ_DIR}, ) >
>  
> I configured the Makefile in the Path /usr/local/bin but it doesn't serve
>  
> thanks!

What version of make are you using ?
Try substituting these lines:
------
ifeq (${PROJ_DIR},)
        PROJ_DIR=/usr/local
endif
------

With this:
------
PROJ_DIR ?= /usr/local
------

I think it's a more portable syntax.

--strk;

> 
> 		
> ---------------------------------
> Do you Yahoo!?
> vote.yahoo.com - Register online to vote today!
> _______________________________________________
> postgis-users mailing list
> postgis-users at postgis.refractions.net
> http://postgis.refractions.net/mailman/listinfo/postgis-users




More information about the postgis-users mailing list