Changeset 112393 in webkit


Ignore:
Timestamp:
Mar 28, 2012 7:19:14 AM (12 years ago)
Author:
xan@webkit.org
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.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r112362 r112393  
     12012-03-28  Xan Lopez  <xlopez@igalia.com>
     2
     3        [GTK] Respect NOCONFIGURE option in autogen.sh
     4        https://bugs.webkit.org/show_bug.cgi?id=82447
     5
     6        Reviewed by Philippe Normand.
     7
     8        Make autogen.sh follow the new build-api for GNOME, see
     9        http://people.gnome.org/~walters/docs/build-api.txt
     10
     11        * autogen.sh: respect the NOCONFIGURE environment flag, per the
     12        new GNOME build-api.
     13
    1142012-03-27  Ryosuke Niwa  <rniwa@webkit.org>
    215
  • trunk/autogen.sh

    r97901 r112393  
    2121cd $ORIGDIR || exit 1
    2222
    23 $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
     23if test -z "$NOCONFIGURE"; then
     24    $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
     25fi
     26
Note: See TracChangeset for help on using the changeset viewer.