From f0296bc39c77f8e9e997d5dae87ab5704e27cdc2 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 4 Apr 2011 11:49:41 -0700 Subject: Expand srcdir in V_INCLS at configure time, not make time. That way, if we temporarily set CPPFLAGS to include V_INCLS, it'll work correctly. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index ccfcb38c..862e0020 100644 --- a/configure.in +++ b/configure.in @@ -1082,8 +1082,8 @@ fi dnl dnl set additional include path if necessary if test "$missing_includes" = "yes"; then - CPPFLAGS="$CPPFLAGS -I\$(srcdir)/missing" - V_INCLS="$V_INCLS -I\$(srcdir)/missing" + CPPFLAGS="$CPPFLAGS -I$srcdir/missing" + V_INCLS="$V_INCLS -I$srcdir/missing" fi AC_SUBST(V_CCOPT) -- cgit v1.2.1