From f68505ee23d37afa31d908e146beab33935b7eed Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 20 Nov 2002 19:04:34 +0000 Subject: [PATCH] Karol Pietrzak pointed out that simply including the include dir in --cflags is not a good thing, as recent gccs for example complain if it is /usr/include Right now, we just output "" until we think of something better. --- curl-config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curl-config.in b/curl-config.in index 052bf345c..3e3cb2f2e 100644 --- a/curl-config.in +++ b/curl-config.in @@ -107,7 +107,8 @@ while test $# -gt 0; do ;; --cflags) - echo -I@includedir@ + #echo -I@includedir@ + echo "" ;; --libs)