1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Fix various recent build and regression-test problems in contrib/.

Includes fixes from Joe Conway.
This commit is contained in:
Tom Lane
2003-05-14 03:27:22 +00:00
parent f85f43dfb5
commit 78b08584b4
5 changed files with 9 additions and 23 deletions

View File

@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.8 2003/01/31 20:58:00 tgl Exp $
# $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.9 2003/05/14 03:27:22 tgl Exp $
subdir = contrib/seg
top_builddir = ../..
@ -16,17 +16,11 @@ segparse.o: segscan.c
segparse.c: segparse.h ;
# The sed hack is so that we can get the same error messages with
# bison 1.875 and later as we did with earlier bisons. Eventually,
# I suppose, we should re-standardize on "syntax error" --- in which
# case flip the sed translation, but don't remove it.
segparse.h: segparse.y
ifdef YACC
$(YACC) -d $(YFLAGS) -p seg_yy $<
sed -e 's/"syntax error/"parse error/' < y.tab.c > segparse.c
mv -f y.tab.c segparse.c
mv -f y.tab.h segparse.h
rm -f y.tab.c
else
@$(missing) bison $< $@
endif