Changeset 155515 in webkit


Ignore:
Timestamp:
Sep 11, 2013 2:54:19 AM (11 years ago)
Author:
berto@igalia.com
Message:

Unquoted $ORIGDIR in autogen.sh
https://bugs.webkit.org/show_bug.cgi?id=19512

Reviewed by Carlos Garcia Campos.

Quote all directory names. This doesn't mean that all possible
directory names are safe for building webkit, but the configure
script already runs a sanity check.

  • autogen.sh:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r155509 r155515  
     12013-09-11  Alberto Garcia  <berto@igalia.com>
     2
     3        Unquoted $ORIGDIR in autogen.sh
     4        https://bugs.webkit.org/show_bug.cgi?id=19512
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Quote all directory names. This doesn't mean that all possible
     9        directory names are safe for building webkit, but the configure
     10        script already runs a sanity check.
     11
     12        * autogen.sh:
     13
    1142013-09-11  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/autogen.sh

    r143604 r155515  
    33# Allow invocation from a separate build directory; in that case, we change
    44# to the source directory to run the auto*, then change back before running configure
    5 srcdir=`dirname $0`
     5srcdir=`dirname "$0"`
    66test -z "$srcdir" && srcdir=.
    77
    88ORIGDIR=`pwd`
    9 cd $srcdir
     9cd "$srcdir" || exit 1
    1010
    1111rm -f $top_srcdir/autom4te.cache
     
    1919autoreconf --verbose --install -I Source/autotools $ACLOCAL_FLAGS|| exit $?
    2020
    21 cd $ORIGDIR || exit 1
     21cd "$ORIGDIR" || exit 1
    2222
    2323if test -z "$NOCONFIGURE"; then
    24     $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
     24    "$srcdir"/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
    2525fi
    2626
Note: See TracChangeset for help on using the changeset viewer.