diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | macros2/gnome-autogen.sh | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2005-08-17 James Henstridge <james@jamesh.id.au> + * macros2/gnome-autogen.sh: pass --force to gnome-doc-prepare to + match other tools. Fixes bug #311775. + * macros2/gnome-autogen.sh: don't use syntax that non-GNU greps don't understand. Fixes bug #313531. diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh index f5be87c..420e6cf 100644 --- a/macros2/gnome-autogen.sh +++ b/macros2/gnome-autogen.sh @@ -383,7 +383,7 @@ for configure_ac in $configure_files; do fi if grep "^GNOME_DOC_INIT" $basename >/dev/null; then printbold "Running $GNOME_DOC_PREPARE..." - $GNOME_DOC_PREPARE --copy || exit 1 + $GNOME_DOC_PREPARE --force --copy || exit 1 fi # Now run aclocal to pull in any additional macros needed |