aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2016-04-06 14:00:43 +0100
committerZoltan Kiss <zoltan.kiss@linaro.org>2016-04-07 10:32:59 +0100
commit111f18c8deae6e2b9b2bb0eb5ca9d7e0e1855c17 (patch)
treea33e90a23a4c3519d93e724258b03431556929cd
parent337a22cea73df01f8df95d0583597f5da983e4c4 (diff)
configure: remove option to build linux-generic
This causes this warning: platform/linux-generic/Makefile.am:121: warning: variable '__LIB__libodp_linux_la_SOURCES' is defined but no program or platform/linux-generic/Makefile.am:121: library has '__LIB__libodp_linux_la' as canonical name (possible typo) Because automake process this file, and since 886acdfc "rename libodp to libodp-linux" the target names have changed. Since aforementioned patch we can't build linux-generic anyway, and merge will break here anyway, let's get rid of this. Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org>
-rw-r--r--configure.ac5
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 8a8ff6bc5..99772a19a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,10 +104,7 @@ AC_SUBST(SDK_INSTALL_PATH)
##########################################################################
# Run platform specific checks and settings
##########################################################################
-if test "${with_platform}" == "linux-generic";
-then
- m4_include([./platform/linux-generic/m4/configure.m4])
-elif test "${with_platform}" == "linux-dpdk";
+if test "${with_platform}" == "linux-dpdk";
then
m4_include([./platform/linux-dpdk/m4/configure.m4])
else