diff options
author | Sascha Schumann <sas@php.net> | 1999-06-28 02:57:08 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-06-28 02:57:08 +0000 |
commit | 30e80d1a8c977ae9ed7acceec92f48249d594562 (patch) | |
tree | ef89dbda71f1decd91783a3b86cc0babd2514a5e | |
parent | 8ba3889572b1aaa2c1e025fa1dbe44f7d7c4dea7 (diff) | |
download | php-git-30e80d1a8c977ae9ed7acceec92f48249d594562.tar.gz |
BSD derived tests want -h for symlink test
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 47ba443879..d1ee3733d2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -107,7 +107,7 @@ libmodphp4-so.a: all-recursive $(OBJS) @REGEX_LIB@ # Apache 1.3 shared module libphp4.so: $(srcdir)/mod_php4.c libmodphp4-so.a @REGEX_LIB@ - -@test -f mod_php4.c || test -L mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c mod_php4.c + -@test -f mod_php4.c || test -L mod_php4.c || test -h mod_php4.c || $(LN_S) $(srcdir)/mod_php4.c mod_php4.c $(APXS) $(INCLUDE) -c -o libphp4.so @RPATHS@ mod_php4.c libmodphp4-so.a $(APXS_LDFLAGS) $(APXS_EXP) regex/libregex.a: |