Commit 0562cf99 authored by Max Kellermann's avatar Max Kellermann

configure.ac: add -I to CPPFLAGS, not CFLAGS

parent 60ac7020
...@@ -119,7 +119,7 @@ if test -z "$prefix" || test "x$prefix" = xNONE; then ...@@ -119,7 +119,7 @@ if test -z "$prefix" || test "x$prefix" = xNONE; then
done done
for d in $local_include; do for d in $local_include; do
if test -d "$d"; then if test -d "$d"; then
CFLAGS="$CFLAGS -I$d" CPPFLAGS="$CPPFLAGS -I$d"
break break
fi fi
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment