Enlightenment CVS committal
Author : vapier
Project : e_modules
Module : devian
Dir : e_modules/devian
Modified Files:
autogen.sh
Log Message:
only spit out configure help if going to actually run configure
===================================================================
RCS file: /cvs/e/e_modules/devian/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- autogen.sh 13 Jul 2006 16:22:04 -0000 1.2
+++ autogen.sh 29 Aug 2006 23:20:35 -0000 1.3
@@ -11,12 +11,6 @@
touch README
-echo
-echo "Options : (see INSTALL file)"
-echo " No arguments : Build dEvian module (Picture & Rss feature)"
-echo " --enable-modular=rss : Build dErss module (Rss feature only)"
-echo " --enable-modular=log : Build dElog module (Log feature only)"
-echo
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
@@ -24,5 +18,11 @@
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then
+ echo
+ echo "Options : (see INSTALL file)"
+ echo " No arguments : Build dEvian module (Picture & Rss feature)"
+ echo " --enable-modular=rss : Build dErss module (Rss feature only)"
+ echo " --enable-modular=log : Build dElog module (Log feature only)"
+ echo
./configure "$@"
fi
|