Commit 6ca365bf authored by Peter Eisentraut's avatar Peter Eisentraut

pgxs: Supply default values for BISON and FLEX variables

Otherwise, the availability of these variables depends on what
happened to be available at the time the PostgreSQL build was
configured.
parent 3f427c13
...@@ -64,6 +64,16 @@ include $(top_builddir)/src/Makefile.global ...@@ -64,6 +64,16 @@ include $(top_builddir)/src/Makefile.global
top_srcdir = $(top_builddir) top_srcdir = $(top_builddir)
srcdir = . srcdir = .
VPATH = VPATH =
# These might be set in Makefile.global, but if they were not found
# during the build of PostgreSQL, supply default values so that users
# of pgxs can use the variables.
ifeq ($(BISON),)
BISON = bison
endif
ifeq ($(FLEX),)
FLEX = flex
endif
endif endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment