Title: [114522] releases/WebKitGTK/webkit-1.8
Revision
114522
Author
x...@webkit.org
Date
2012-04-18 10:15:20 -0700 (Wed, 18 Apr 2012)

Log Message

[GTK] Respect NOCONFIGURE option in autogen.sh
https://bugs.webkit.org/show_bug.cgi?id=82447

Reviewed by Philippe Normand.

Make autogen.sh follow the new build-api for GNOME, see
http://people.gnome.org/~walters/docs/build-api.txt

* autogen.sh: respect the NOCONFIGURE environment flag, per the
new GNOME build-api.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-1.8/ChangeLog (114521 => 114522)


--- releases/WebKitGTK/webkit-1.8/ChangeLog	2012-04-18 17:07:23 UTC (rev 114521)
+++ releases/WebKitGTK/webkit-1.8/ChangeLog	2012-04-18 17:15:20 UTC (rev 114522)
@@ -1,3 +1,16 @@
+2012-03-28  Xan Lopez  <xlo...@igalia.com>
+
+        [GTK] Respect NOCONFIGURE option in autogen.sh
+        https://bugs.webkit.org/show_bug.cgi?id=82447
+
+        Reviewed by Philippe Normand.
+
+        Make autogen.sh follow the new build-api for GNOME, see
+        http://people.gnome.org/~walters/docs/build-api.txt
+
+        * autogen.sh: respect the NOCONFIGURE environment flag, per the
+        new GNOME build-api.
+
 2012-03-27  Martin Robinson  <mrobin...@igalia.com>
 
         Update the NEWS and version for the impending 1.8.0 release.

Modified: releases/WebKitGTK/webkit-1.8/autogen.sh (114521 => 114522)


--- releases/WebKitGTK/webkit-1.8/autogen.sh	2012-04-18 17:07:23 UTC (rev 114521)
+++ releases/WebKitGTK/webkit-1.8/autogen.sh	2012-04-18 17:15:20 UTC (rev 114522)
@@ -20,4 +20,7 @@
 
 cd $ORIGDIR || exit 1
 
-$srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
+if test -z "$NOCONFIGURE"; then
+    $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
+fi
+
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to