summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid King <amigadave@amigadave.com>2012-07-30 17:13:19 +0100
committerDavid King <amigadave@amigadave.com>2012-07-30 17:13:19 +0100
commit0efa19df00955bfec29995736e262412fd32de86 (patch)
tree6049f07c341c06371a6d0e1b97b33226e90b5c44
parent101362218645db3f0fbb55e1e6ea80c4bd70f97d (diff)
downloadgnome-common-0efa19df00955bfec29995736e262412fd32de86.tar.gz
Do not call automake with --force, bug 612329
The --force option for automake is not documented, so gnome-autogen.sh should not use it.
-rw-r--r--macros2/gnome-autogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh
index 960046f..63cae99 100644
--- a/macros2/gnome-autogen.sh
+++ b/macros2/gnome-autogen.sh
@@ -485,7 +485,7 @@ for configure_ac in $configure_files; do
cp -pf INSTALL INSTALL.autogen_bak
fi
if [ $REQUIRED_AUTOMAKE_VERSION != 1.4 ]; then
- $AUTOMAKE --gnu --add-missing --force --copy -Wno-portability || exit 1
+ $AUTOMAKE --gnu --add-missing --copy -Wno-portability || exit 1
else
$AUTOMAKE --gnu --add-missing --copy || exit 1
fi