summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf10
1 files changed, 3 insertions, 7 deletions
diff --git a/buildconf b/buildconf
index 61416eca8..0747982ed 100755
--- a/buildconf
+++ b/buildconf
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: buildconf,v 1.64 2005/02/03 17:42:42 sniper Exp $
+# $Id: buildconf,v 1.64.2.1 2005/11/29 22:39:19 sniper Exp $
eval `grep '^EXTRA_VERSION=' configure.in`
case "$EXTRA_VERSION" in
@@ -15,10 +15,6 @@ devok=0
debug=no
while test $# -gt 0; do
- if test "$1" = "--copy"; then
- automake_flags=--copy
- fi
-
if test "$1" = "--force"; then
devok=1
echo "Forcing buildconf"
@@ -67,7 +63,7 @@ fi
rm -f generated_lists
if test "$debug" = "yes"; then
- ${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
+ ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
else
- ${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR"
+ ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR"
fi