summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-07-17 12:27:54 +0000
committerSascha Schumann <sas@php.net>1999-07-17 12:27:54 +0000
commit8a7784d462e45e984cff9cd083a3d4746eacdba7 (patch)
treec76a0cc1028b901b81059687d1f49fbb1d05ffd3 /buildconf
parent7af3ce63a6dbe9c1df4d0dfc7c576068d53aaeb6 (diff)
downloadphp-git-8a7784d462e45e984cff9cd083a3d4746eacdba7.tar.gz
make copy optional
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf6
1 files changed, 5 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index 743c7c0d06..ab4e217614 100755
--- a/buildconf
+++ b/buildconf
@@ -1,5 +1,9 @@
#!/bin/sh
+if test "$1" = "--copy"; then
+ automake_flags=--copy
+fi
+
test -d libzend || ln -s ../libzend .
test -d TSRM || ln -s ../TSRM .
@@ -16,7 +20,7 @@ fi
autoheader
-automake --add-missing --include-deps --copy
+automake --add-missing --include-deps $automake_flags
mv configure configure.old 2>/dev/null
autoconf