diff options
author | jfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-20 12:29:50 +0000 |
---|---|---|
committer | jfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-20 12:29:50 +0000 |
commit | bc6dc8873d9c27b99b5e48a4d637b6e510c3ff3d (patch) | |
tree | 3bdd7ea0c8050673547a126458886f23b84afa0a /build | |
parent | 219966a37cdc2e4a41db250fecb468fa2b42969b (diff) | |
download | libapr-bc6dc8873d9c27b99b5e48a4d637b6e510c3ff3d.tar.gz |
Change COMPILE macro to make sure that APR includes are before the CFLAGS
ones (like /usr/local/include.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61543 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/rules.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rules.mk.in b/build/rules.mk.in index 67fdc6c82..6a46d0f3b 100644 --- a/build/rules.mk.in +++ b/build/rules.mk.in @@ -83,7 +83,7 @@ LTFLAGS = --silent # # Basic macro setup # -COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTIM) $(INCLUDES) +COMPILE = $(CC) $(CPPFLAGS) $(INCLUDES) $(OPTIM) $(CFLAGS) LT_COMPILE = @lt_compile@ LINK = @link@ |