aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-07-30 11:02:11 +0200
committerAnton Khirnov <anton@khirnov.net>2013-11-04 10:52:50 +0100
commita5f1e5a25cb1e6538998c727c7279d7ce0b88e51 (patch)
tree7300bd66cf951e799c565baf6d01f9957c06e63d
parente81c5030b806c71fd92208d5d3d901b932dc2097 (diff)
configure.ac: add -I to CPPFLAGS, not CFLAGS
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 944cf5c3..fffef3fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -119,7 +119,7 @@ if test -z "$prefix" || test "x$prefix" = xNONE; then
done
for d in $local_include; do
if test -d "$d"; then
- CFLAGS="$CFLAGS -I$d"
+ CPPFLAGS="$CPPFLAGS -I$d"
break
fi
done