Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b83e545

Browse files
committed
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.
1 parent bb5d6e8 commit b83e545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Makefile.global.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ PTHREAD_LIBS = @PTHREAD_LIBS@
232232
CPP = @CPP@
233233
CPPFLAGS = @CPPFLAGS@
234234

235-
override CPPFLAGS := $(CPPFLAGS) $(ICU_CFLAGS)
235+
override CPPFLAGS := $(ICU_CFLAGS) $(CPPFLAGS)
236236

237237
ifdef PGXS
238238
override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)

0 commit comments

Comments
 (0)