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.
This commit is contained in:
Peter Eisentraut 2017-08-09 20:28:49 -04:00
parent bb5d6e80b1
commit b83e54564a
1 changed files with 1 additions and 1 deletions

View File

@ -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)