diff options
author | foobar <sniper@php.net> | 2003-12-04 15:57:55 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-12-04 15:57:55 +0000 |
commit | e13e315a10cff71e83b71d50d2092fa50f10b3c7 (patch) | |
tree | ff7f0cc2866937a5bfe4bab23ff6418260debed7 /Makefile.global | |
parent | 9555db802d5977634c45961319050c5ff5933fcb (diff) | |
download | php-git-e13e315a10cff71e83b71d50d2092fa50f10b3c7.tar.gz |
- Only add 'install-modules' into install targets when there are such
modules to install.
Diffstat (limited to 'Makefile.global')
-rw-r--r-- | Makefile.global | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.global b/Makefile.global index 0492759aef..e30bc42f78 100644 --- a/Makefile.global +++ b/Makefile.global @@ -38,10 +38,10 @@ install-sapi: $(OVERALL_TARGET) install-modules: build-modules @test -d modules && \ - $(mkinstalldirs) $(INSTALL_ROOT)$(EXTENSION_DIR) && \ - echo "Installing shared extensions: $(INSTALL_ROOT)$(EXTENSION_DIR)/" && \ - rm -f modules/*.la && \ - $(INSTALL) modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) >/dev/null 2>&1 || true + $(mkinstalldirs) $(INSTALL_ROOT)$(EXTENSION_DIR) + @echo "Installing shared extensions: $(INSTALL_ROOT)$(EXTENSION_DIR)/" + @rm -f modules/*.la >/dev/null 2>&1 + @$(INSTALL) modules/* $(INSTALL_ROOT)$(EXTENSION_DIR) install-tester: @echo "Installing regression tester: $(INSTALL_ROOT)$(PEAR_INSTALLDIR)/" |