diff options
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 8ba6a029..13d6f945 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -627,7 +627,11 @@ AC_ARG_WITH(metasmt, if test X$with_metasmt = X ; then ENABLE_METASMT=0 else - metasmt_root=`cd $with_metasmt 2> /dev/null; pwd` + metasmt_root=`(cd $with_metasmt && pwd) 2> /dev/null` + #Check for bad path + if test "X$metasmt_root" = X ; then + AC_MSG_ERROR([Cannot access path $with_metasmt passed to --with-metasmt]) + fi dnl AC_LANG(C++) old_CPPFLAGS="$CPPFLAGS" |