From: Jaroslav Kysela Date: Fri, 3 Jul 2015 09:59:35 +0000 (+0200) Subject: configure: early error when a space is in the source path, fixes #2988 X-Git-Tag: v4.0.6~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbb8c2760ccca6bd8193644e30fe01b709ea48bb;p=thirdparty%2Ftvheadend.git configure: early error when a space is in the source path, fixes #2988 --- diff --git a/configure b/configure index b841faf41..487456be8 100755 --- a/configure +++ b/configure @@ -57,6 +57,10 @@ OPTIONS=( . "$ROOTDIR/support/configure.inc" +case "$ROOTDIR" in + *\ * ) die "The source directory contains a space. It is not supported." +esac + # ########################################################################### # Parse arguments # ###########################################################################