Skip to content
Snippets Groups Projects
Commit 560f42c8 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2005-02-23 13:57:27 by simonmar]

Sanity check for $hardtop containing space characters, suggested by
Malcolm Wallace.
parent 766c499e
No related branches found
No related tags found
No related merge requests found
......@@ -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 --------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment