projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b48b073
)
Don't bail out, if PECL cannot be installed. PHP is often only an
author
Sascha Schumann
<sas@php.net>
Tue, 23 Nov 1999 12:41:02 +0000
(12:41 +0000)
committer
Sascha Schumann
<sas@php.net>
Tue, 23 Nov 1999 12:41:02 +0000
(12:41 +0000)
intermediate step of the installation, so it is often not performed
by root.
pear/Makefile.am
patch
|
blob
|
history
diff --git
a/pear/Makefile.am
b/pear/Makefile.am
index 2dd988ac9c92d8f1e345f6772212b9bde38a6e0b..9d0c129e31c599035f5a6e41be579313bf40bd66 100644
(file)
--- a/
pear/Makefile.am
+++ b/
pear/Makefile.am
@@
-4,6
+4,6
@@
pecldir=$(prefix)/lib/php
pecl_DBdir=$(prefix)/lib/php/DB
install-data-local:
- $(mkinstalldirs) $(pecldir) $(pecl_DBdir)
- $(INSTALL_DATA) $(srcdir)/DB.php $(pecldir)
+ -$(mkinstalldirs) $(pecldir) $(pecl_DBdir) && \
+ $(INSTALL_DATA) $(srcdir)/DB.php $(pecldir)
&& \
$(INSTALL_DATA) $(srcdir)/DB/odbc.php $(pecl_DBdir)