diff options
author | Andrei Zmievski <andrei@php.net> | 2000-02-10 22:19:02 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-02-10 22:19:02 +0000 |
commit | a4c68caedd79267e074ded440faf570dde5200f5 (patch) | |
tree | eb722307c28ba820522c0719e47511aeeceb3096 | |
parent | 1c7f36465b49721372d8b677ada9c8197b4a04eb (diff) | |
download | php-git-a4c68caedd79267e074ded440faf570dde5200f5.tar.gz |
Avoid the 'unexpected end of file' error.
-rw-r--r-- | pear/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/Makefile.in b/pear/Makefile.in index b4cb2a3a49..c07e95dd09 100644 --- a/pear/Makefile.in +++ b/pear/Makefile.in @@ -47,7 +47,7 @@ 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 && + mv $(bindir)/php-config.tmp $(bindir)/php-config SRC_HEADERS = \ php.h \ |