diff options
author | Sascha Schumann <sas@php.net> | 2000-06-09 17:19:26 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-09 17:19:26 +0000 |
commit | b98d2a8261a25ebbddb1a8e2bef4e0902b09a89d (patch) | |
tree | 96fe315d7e254d3e2502f99e76567eb80af7aaa7 /Makefile.in | |
parent | 605b1aa3943718c610d3fc3c2af128aa8f7cb972 (diff) | |
download | php-git-b98d2a8261a25ebbddb1a8e2bef4e0902b09a89d.tar.gz |
The ! command is not portable.
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 59542eeab8..d220baf00a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -38,7 +38,7 @@ include $(top_srcdir)/build/program.mk install-sapi: @$(LIBTOOL) --silent --mode=install cp libphp4.la $(phptempdir)/libphp4.la >/dev/null 2>&1 -@$(mkinstalldirs) $(bindir) - -@if ! test -r $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); then \ + -@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 \ $(LN_S) $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME).$$i $(phptempdir)/libphp4.$(SHLIB_SUFFIX_NAME); \ |