diff options
author | Sascha Schumann <sas@php.net> | 2000-03-26 19:46:42 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-03-26 19:46:42 +0000 |
commit | 6da32c3314c08aac7c94eb7f36db35ba7c56d4f2 (patch) | |
tree | 6fc537614411b363c290b6841837f3ffdb285822 | |
parent | 491792e0d0ef8ff7fa8034eb8cc5acd8396b8970 (diff) | |
download | php-git-6da32c3314c08aac7c94eb7f36db35ba7c56d4f2.tar.gz |
Ignore errors at this place
-rw-r--r-- | pear/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pear/Makefile.in b/pear/Makefile.in index 5b3dee222f..894a49bb1e 100644 --- a/pear/Makefile.in +++ b/pear/Makefile.in @@ -50,8 +50,8 @@ install-build: -e 's#@PHPINCLUDEDIR@#$(phpincludedir)#g' \ < $(srcdir)/php-config.in > $(bindir)/php-config.tmp && \ chmod +x $(bindir)/php-config.tmp && \ - mv $(bindir)/php-config.tmp $(bindir)/php-config - @cp $(srcdir)/phpextdist $(bindir)/phpextdist + mv $(bindir)/php-config.tmp $(bindir)/php-config && \ + cp $(srcdir)/phpextdist $(bindir)/phpextdist SRC_HEADERS = \ php.h \ |