summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2fd11a9b3d19..7308d31faebd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -81,6 +81,10 @@ PathFormat()
AC_MSG_ERROR([path conversion failed for "$1".])
fi
fi
+ fp_count_space=`echo "$formatted_path" | $GREP -c "[ ]"`
+ if test "$fp_count_space" != "0"; then
+ AC_MSG_ERROR([converted path "$formatted_path" still contains spaces. Short filenames (8.3 filenames) support was disabled on this system?])
+ fi
fi
}