aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index abe85c0..2c324be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,11 +73,18 @@ AC_ARG_WITH([platform],
[select platform to be used, default linux-generic])],
[],
[with_platform=linux-generic
- m4_include([./platform/linux-generic/m4/configure.m4])
])
AC_SUBST([with_platform])
+if test "${with_platform}" == "linux-generic";
+then
+ m4_include([./platform/linux-generic/m4/configure.m4])
+else
+ echo "UNSUPPORTED PLATFORM: ${with_platform}"
+ exit 1
+fi
+
AC_ARG_WITH([sdk-install-path],
AC_HELP_STRING([--with-sdk-install-path=DIR path to external libs and headers],
[(or in the default path if not specified).]),