From 7e9e12f41dd740dff8a81e6b7f32b14242b33cdc Mon Sep 17 00:00:00 2001 From: Martin Castillo Date: Fri, 26 Feb 2016 18:54:23 +0100 Subject: [PATCH] fixes 'cd error' in autogen.sh If a parent directory of the libepoxy source dir contains a space, 'cd' in line 10 fails. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index fc34bd5..550ad92 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,7 +7,7 @@ ORIGDIR=`pwd` cd $srcdir autoreconf -v --install || exit 1 -cd $ORIGDIR || exit $? +cd "$ORIGDIR" || exit $? if test -z "$NOCONFIGURE"; then $srcdir/configure "$@"