From: foobar Date: Wed, 12 Feb 2003 03:25:29 +0000 (+0000) Subject: MFH: Use $(INSTALL) for installing shared extensions. X-Git-Tag: php-4.3.2RC1~256 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fc8d5412d239fd3af1ab8cd27d36ebe8d3b347e;p=php MFH: Use $(INSTALL) for installing shared extensions. --- diff --git a/Makefile.global b/Makefile.global index a0e5bea95b..e286980e2a 100644 --- a/Makefile.global +++ b/Makefile.global @@ -37,7 +37,7 @@ install-modules: build-modules $(mkinstalldirs) $(INSTALL_ROOT)$(EXTENSION_DIR) && \ echo "Installing shared extensions: $(INSTALL_ROOT)$(EXTENSION_DIR)/" && \ rm -f modules/*.la && \ - cp modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) >/dev/null 2>&1 || true + $(INSTALL) modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) >/dev/null 2>&1 || true install-tester: @echo "Installing regression tester: $(INSTALL_ROOT)$(PEAR_INSTALLDIR)/"