Commit b83e5456 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix order of ICU_CFLAGS

It must be before CPPFLAGS so that an ICU installation in a nonstandard
path can take precedence over one in the system path.
parent bb5d6e80
......@@ -232,7 +232,7 @@ PTHREAD_LIBS = @PTHREAD_LIBS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
override CPPFLAGS := $(CPPFLAGS) $(ICU_CFLAGS)
override CPPFLAGS := $(ICU_CFLAGS) $(CPPFLAGS)
ifdef PGXS
override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
......
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