Skip to content

Commit 8a7784d

Browse files
author
Sascha Schumann
committed
make copy optional
1 parent 7af3ce6 commit 8a7784d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

buildconf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
if test "$1" = "--copy"; then
4+
automake_flags=--copy
5+
fi
6+
37
test -d libzend || ln -s ../libzend .
48
test -d TSRM || ln -s ../TSRM .
59

@@ -16,7 +20,7 @@ fi
1620

1721
autoheader
1822

19-
automake --add-missing --include-deps --copy
23+
automake --add-missing --include-deps $automake_flags
2024

2125
mv configure configure.old 2>/dev/null
2226
autoconf

0 commit comments

Comments
 (0)