summaryrefslogtreecommitdiff
path: root/contrib/cube/Makefile
diff options
context:
space:
mode:
authorTom Lane2003-05-14 03:27:22 +0000
committerTom Lane2003-05-14 03:27:22 +0000
commit78b08584b43d2608a10eb41e5d9430baa4d6f52a (patch)
tree8f7c8d117f45288ae9e1ef1e18041c55910d3793 /contrib/cube/Makefile
parentf85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c (diff)
Fix various recent build and regression-test problems in contrib/.
Includes fixes from Joe Conway.
Diffstat (limited to 'contrib/cube/Makefile')
-rw-r--r--contrib/cube/Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/contrib/cube/Makefile b/contrib/cube/Makefile
index 5e396ac8788..6c5570505cb 100644
--- a/contrib/cube/Makefile
+++ b/contrib/cube/Makefile
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.8 2003/01/31 20:58:00 tgl Exp $
+# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.9 2003/05/14 03:27:21 tgl Exp $
subdir = contrib/cube
top_builddir = ../..
@@ -17,17 +17,11 @@ cubeparse.o: cubescan.c
cubeparse.c: cubeparse.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.
-
cubeparse.h: cubeparse.y
ifdef YACC
$(YACC) -d $(YFLAGS) -p cube_yy $<
- sed -e 's/"syntax error/"parse error/' < y.tab.c > cubeparse.c
+ mv -f y.tab.c cubeparse.c
mv -f y.tab.h cubeparse.h
- rm -f y.tab.c
else
@$(missing) bison $< $@
endif