diff options
author | Sascha Schumann <sas@php.net> | 2001-10-01 21:03:05 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-10-01 21:03:05 +0000 |
commit | 4eb761115583f3478bfc36d65558f775b364a854 (patch) | |
tree | a538651b7370d8144c738c56ec7c75d26e73e19d /Makefile.in | |
parent | 758b775d34213fb1eaa52da5076426756a67df4a (diff) | |
download | php-git-4eb761115583f3478bfc36d65558f775b364a854.tar.gz |
@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
may fail.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 471a102e8e..e76599ca82 100644 --- a/Makefile.in +++ b/Makefile.in @@ -32,7 +32,7 @@ include $(top_srcdir)/build/program.mk install-sapi: @$(LIBTOOL) --silent --mode=install cp libphp4.la $(phptempdir)/libphp4.la >/dev/null 2>&1 - @$(mkinstalldirs) $(INSTALL_ROOT)$(bindir) + -@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir) -@if test ! -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); then \ for i in 0.0.0 0.0 0; do \ if test -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME).$$i; then \ |