configure.ac: escape $srcdir when used in a variable

$srcdir needs to be escaped for proper expansion when used
as part of a Makefile variable.
pull/2081/head
Jason Ish 9 years ago committed by Victor Julien
parent 45342078e4
commit 667e4e68bf

@ -1273,7 +1273,7 @@
HTP_LDADD="../libhtp/htp/libhtp.la"
AC_SUBST(HTP_LDADD)
# make sure libhtp is added to the includes
CPPFLAGS="-I${srcdir}/../libhtp/ ${CPPFLAGS}"
CPPFLAGS="-I\${srcdir}/../libhtp/ ${CPPFLAGS}"
AC_CHECK_HEADER(iconv.h,,[AC_ERROR(iconv.h not found ...)])
AC_CHECK_LIB(iconv, libiconv_close)

Loading…
Cancel
Save