From: Mark Cave-Ayland Date: Mon, 28 Jul 2008 09:13:45 +0000 (+0000) Subject: Fix -o option for flex; the output filename must be specified immediately after ... X-Git-Tag: 1.4.0b1~816 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a8647cfe6bd03128d9e2d2891208e271f0b1e26;p=postgis Fix -o option for flex; the output filename must be specified immediately after -o without any preceding white space. Per report from Jorgen Austvik. git-svn-id: http://svn.osgeo.org/postgis/trunk@2884 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/Makefile.in b/liblwgeom/Makefile.in index 04563f46d..037dc9626 100644 --- a/liblwgeom/Makefile.in +++ b/liblwgeom/Makefile.in @@ -59,5 +59,5 @@ wktparse.tab.c: wktparse.y mv -f y.tab.h wktparse.tab.h lex.yy.c: wktparse.lex wktparse.tab.c - $(LEX) -Plwg_parse_yy -i -f -o 'lex.yy.c' wktparse.lex + $(LEX) -Plwg_parse_yy -i -f -o'lex.yy.c' wktparse.lex