SF.net SVN: geany-plugins:[1703] trunk/geany-plugins/autogen.sh

hyperair at users.sourceforge.net hyperair at xxxxx
Fri Nov 5 18:31:44 UTC 2010


Revision: 1703
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1703&view=rev
Author:   hyperair
Date:     2010-11-05 18:31:44 +0000 (Fri, 05 Nov 2010)

Log Message:
-----------
Allow skipping configure during autogen by setting NOCONFIGURE=1

Modified Paths:
--------------
    trunk/geany-plugins/autogen.sh

Modified: trunk/geany-plugins/autogen.sh
===================================================================
--- trunk/geany-plugins/autogen.sh	2010-11-02 21:43:46 UTC (rev 1702)
+++ trunk/geany-plugins/autogen.sh	2010-11-05 18:31:44 UTC (rev 1703)
@@ -4,4 +4,8 @@
 intltoolize -c -f
 autoreconf -vfi
 
-./configure "$@"
+if [ "$NOCONFIGURE" = 1 ]; then
+    echo "Done. configure skipped."
+    exit 0;
+fi
+exec ./configure "$@"


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list