diff options
author | Martin Castillo <castilma@uni-bremen.de> | 2016-02-26 18:54:23 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-01-18 14:29:04 +0000 |
commit | 7e9e12f41dd740dff8a81e6b7f32b14242b33cdc (patch) | |
tree | 7d8206f8eef809ec7bc7951e226db5280a512fa1 /autogen.sh | |
parent | 91916269e501e041406b092c7242757d0320b802 (diff) | |
download | libepoxy-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-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 "$@" |