diff options
author | Sascha Schumann <sas@php.net> | 1999-07-17 12:27:54 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-07-17 12:27:54 +0000 |
commit | 8a7784d462e45e984cff9cd083a3d4746eacdba7 (patch) | |
tree | c76a0cc1028b901b81059687d1f49fbb1d05ffd3 /buildconf | |
parent | 7af3ce63a6dbe9c1df4d0dfc7c576068d53aaeb6 (diff) | |
download | php-git-8a7784d462e45e984cff9cd083a3d4746eacdba7.tar.gz |
make copy optional
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |