aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2016-07-28 19:28:03 +0100
committerZoltan Kiss <zoltan.kiss@linaro.org>2016-07-28 20:14:26 +0100
commitb3388dd31468edd6b92138ac40c1013739dfdea9 (patch)
treed031e1335756a4161738b8886416872b1d4fb0ee
parent9c9bc87e7e16970fc947003be283afdf224c374a (diff)
acinclude: remove duplicate check for library
During the link test further down it will check if linking is possible, this check is a bit duplicate. Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org>
-rw-r--r--acinclude.m47
1 files changed, 1 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index efb118634..7e33255ed 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -314,12 +314,7 @@ AC_DEFUN([OVS_CHECK_ODP], [
else
AC_MSG_ERROR([cannot find ODP headers])
fi
-
- if test -f "$ODP/lib/libodp.a" ; then
- ODP_LIB_DIR="$ODP/lib"
- else
- AC_MSG_ERROR([cannot find ODP lib])
- fi
+ ODP_LIB_DIR="$ODP/lib"
AC_SUBST([ODP_INCLUDE])
AC_SUBST([ODP_LIB_DIR])