[postgis-users] Re: ver 1.1.5 configure fails on Ubuntu

strk at refractions.net strk at refractions.net
Thu Nov 9 23:04:06 PST 2006


On Thu, Nov 09, 2006 at 09:23:20PM -0500, Steven Johnson wrote:
> strk,
> Thanks for your response to my ./configure woes. I tried your suggestion and
> these are the results:
> test !-f "/usr/bin/geos-config" yields
> test flex --version "/usr/bin/geos-config"
> bash: test: --version: binary operator expected

Ops.. it seems that the '!' char is interpreted as a seek in 
the history...
Try replacing that with:

if test -f "$variable"; then
 :
else
 .... original code here ....
fi

(in configure.in)

--strk;



More information about the postgis-users mailing list