- Plain path passed to PHP_INSTALL_HEADERS needs to have trailing /

This commit is contained in:
foobar 2005-06-20 00:52:59 +00:00
parent a892e4874f
commit 6a58298bf6
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ int main() {
PHP_NEW_EXTENSION(iconv, iconv.c, $ext_shared,, [-I\"$PHP_ICONV_PREFIX/include\"])
PHP_SUBST(ICONV_SHARED_LIBADD)
PHP_INSTALL_HEADERS([ext/iconv])
PHP_INSTALL_HEADERS([ext/iconv/])
else
AC_MSG_ERROR(Please reinstall the iconv library.)
fi

View File

@ -54,6 +54,6 @@ if test "$PHP_XML" != "no"; then
PHP_NEW_EXTENSION(xml, xml.c $xml_extra_sources, $ext_shared)
PHP_SUBST(XML_SHARED_LIBADD)
PHP_INSTALL_HEADERS([ext/xml])
PHP_INSTALL_HEADERS([ext/xml/])
AC_DEFINE(HAVE_XML, 1, [ ])
fi