From 4ea2948c1fef9e6f0600465d5ba24aa4e7932eb1 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Sun, 4 Dec 2005 15:27:20 +0000 Subject: [PATCH] * macros/autogen.sh: don't warn the user about running configure with zero arguments. Autogen doesn't run configure anymore. This confused a user. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12091 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ macros/autogen.sh | 13 +++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index b701a5e52b..93b1c296b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-12-04 Derek Atkins + + * macros/autogen.sh: don't warn the user about running + configure with zero arguments. Autogen doesn't run + configure anymore. This confused a user. + 2005-12-04 Christian Stimming * src/import-export/hbci/druid-hbci-initial.c: Fix crash when diff --git a/macros/autogen.sh b/macros/autogen.sh index f6dad8cc43..d75691d479 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -181,12 +181,13 @@ if test "$DIE" -eq 1; then exit 1 fi -if test -z "$*"; then - echo "**Warning**: I am going to run \`configure' with no arguments." - echo "If you wish to pass any to it, please specify them on the" - echo \`$0"' command line." - echo -fi +# We don't call configure so we don't need to warn the user here. +#if test -z "$*"; then +# echo "**Warning**: I am going to run \`configure' with no arguments." +# echo "If you wish to pass any to it, please specify them on the" +# echo \`$0"' command line." +# echo +#fi case $CC in xlc )