summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-06-20 00:52:59 +0000
committerfoobar <sniper@php.net>2005-06-20 00:52:59 +0000
commit6a58298bf6ff53fe6a8604b71c9ea938a7966de7 (patch)
tree4399b7eebfb682d06e78916617cdb2c5e0cb8d86
parenta892e4874fa3114bca842afad3b3e0645123ff2d (diff)
downloadphp-git-6a58298bf6ff53fe6a8604b71c9ea938a7966de7.tar.gz
- Plain path passed to PHP_INSTALL_HEADERS needs to have trailing /
-rw-r--r--ext/iconv/config.m42
-rw-r--r--ext/xml/config.m42
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/iconv/config.m4 b/ext/iconv/config.m4
index 40f68bd484..241c0f5320 100644
--- a/ext/iconv/config.m4
+++ b/ext/iconv/config.m4
@@ -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
diff --git a/ext/xml/config.m4 b/ext/xml/config.m4
index 1c69b8301a..5a2630bdcf 100644
--- a/ext/xml/config.m4
+++ b/ext/xml/config.m4
@@ -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