mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
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:
@ -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)
|
||||
|
Reference in New Issue
Block a user