[postgis-tickets] [SCM] PostGIS branch out-of-tree-builds updated. 3.2.0-344-gcbb884c59
git at osgeo.org
git at osgeo.org
Thu Jan 20 16:13:39 PST 2022
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, out-of-tree-builds has been updated
via cbb884c59085c1d4df6d8636938ae3904d2d4560 (commit)
from 0bb61c1c4d72eb70c8517e32bf0ba52d6930b586 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cbb884c59085c1d4df6d8636938ae3904d2d4560
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Jan 21 01:13:19 2022 +0100
Fix out-of-tree generation of WKT parser
diff --git a/liblwgeom/Makefile.in b/liblwgeom/Makefile.in
index d114e7162..9f0530c8f 100644
--- a/liblwgeom/Makefile.in
+++ b/liblwgeom/Makefile.in
@@ -226,14 +226,14 @@ lwin_wkt_parse.c lwin_wkt_parse.h: lwin_wkt_parse.y
echo "No yacc found, cannot build parser" >&2; \
false; \
}
- $(YACC) -p wkt_yy -o'lwin_wkt_parse.c' -d lwin_wkt_parse.y
+ $(YACC) -p wkt_yy -o'lwin_wkt_parse.c' -d $<
lwin_wkt_lex.c: lwin_wkt_lex.l
@test -n "$(LEX)" || { \
echo "No lex found, cannot build parser" >&2; \
false; \
}
- $(LEX) -i lwin_wkt_lex.l
+ $(LEX) -i $<
liblwgeom.h: liblwgeom.h.in
cd $(top_builddir) && ./config.status
-----------------------------------------------------------------------
Summary of changes:
liblwgeom/Makefile.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list