diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2010-10-17 21:26:31 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2010-10-17 21:26:31 -0700 |
commit | 59a8d5609398824c81b72deb82735a55332ca239 (patch) | |
tree | 2711b77818431132860a9c1d022dcf20ac5af7f2 | |
parent | 4a6f7a357222b2c1fa289d6e7b5fcc8c361e20e9 (diff) |
Fix include ordering, so -I../include precedes $CPPFLAGS which could
cause us to include installed rather than packaged headers.
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 621a82d..a5dd7d4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,8 @@ lib_LTLIBRARIES=libICE.la +AM_CPPFLAGS = -I${top_srcdir}/include + AM_CFLAGS = \ - -I${top_srcdir}/include \ $(ICE_CFLAGS) \ $(XTRANS_CFLAGS) \ $(CWARNFLAGS) \ |