summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorMartin Castillo <castilma@uni-bremen.de>2016-02-26 18:54:23 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2017-01-18 14:29:04 +0000
commit7e9e12f41dd740dff8a81e6b7f32b14242b33cdc (patch)
tree7d8206f8eef809ec7bc7951e226db5280a512fa1 /autogen.sh
parent91916269e501e041406b092c7242757d0320b802 (diff)
downloadlibepoxy-7e9e12f41dd740dff8a81e6b7f32b14242b33cdc.tar.gz
fixes 'cd error' in autogen.sh
If a parent directory of the libepoxy source dir contains a space, 'cd' in line 10 fails.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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 "$@"