From 560f42c83a4aa48d00afec1c2d53d1de6f501bc9 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 23 Feb 2005 13:57:27 +0000 Subject: [PATCH] [project @ 2005-02-23 13:57:27 by simonmar] Sanity check for $hardtop containing space characters, suggested by Malcolm Wallace. --- configure.ac | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index aa76efa..1b7dbda 100644 --- a/configure.ac +++ b/configure.ac @@ -567,6 +567,14 @@ AC_SUBST(hardtop_plat) AC_MSG_RESULT(${hardtop}) +# We don't support building in directories with spaces. +case "$hardtop" in + *' '*) AC_MSG_ERROR([ + The build system does not support building in a directory containing + space characters. Suggestion: move the build tree somewhere else.]) + ;; +esac + dnl -------------------------------------------------------------- dnl * Project specific configuration options dnl -------------------------------------------------------------- -- 1.7.10.4