fixes 'cd error' in autogen.sh

If a parent directory of the libepoxy source dir contains a space,
'cd' in line 10 fails.
macos/v1.5.9
Martin Castillo 9 years ago committed by Emmanuele Bassi
parent 91916269e5
commit 7e9e12f41d
  1. 2
      autogen.sh

@ -7,7 +7,7 @@ ORIGDIR=`pwd`
cd $srcdir cd $srcdir
autoreconf -v --install || exit 1 autoreconf -v --install || exit 1
cd $ORIGDIR || exit $? cd "$ORIGDIR" || exit $?
if test -z "$NOCONFIGURE"; then if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@" $srcdir/configure "$@"

Loading…
Cancel
Save