SF.net SVN: geany:[5375] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Sun Nov 7 15:32:37 UTC 2010
Revision: 5375
http://geany.svn.sourceforge.net/geany/?rev=5375&view=rev
Author: eht16
Date: 2010-11-07 15:32:37 +0000 (Sun, 07 Nov 2010)
Log Message:
-----------
Allow skipping configure during autogen by setting NOCONFIGURE=1 (thanks to Chow Loong Jin).
Modified Paths:
--------------
trunk/ChangeLog
trunk/autogen.sh
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-11-07 15:24:26 UTC (rev 5374)
+++ trunk/ChangeLog 2010-11-07 15:32:37 UTC (rev 5375)
@@ -7,6 +7,9 @@
Fix installation of template files.
* src/ui_utils.c:
Use non-GIO mime-type icon lookup if GIO lookup fails.
+ * autogen.sh:
+ Allow skipping configure during autogen by setting NOCONFIGURE=1
+ (thanks to Chow Loong Jin).
2010-11-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh 2010-11-07 15:24:26 UTC (rev 5374)
+++ trunk/autogen.sh 2010-11-07 15:32:37 UTC (rev 5375)
@@ -91,6 +91,10 @@
automake --add-missing --copy --gnu
autoconf
+if [ "$NOCONFIGURE" = 1 ]; then
+ echo "Done. configure skipped."
+ exit 0;
+fi
echo "Running $srcdir/configure $@ ..."
$srcdir/configure "$@" && echo "Now type 'make' to compile." || exit 1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list