aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2016-03-30 21:08:18 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-03-31 16:34:06 +0300
commit972f47f4672cb30f0cb50a3ddfc0ced69eb27729 (patch)
treef96a76e726c33aab4a7fe1be21be1be525796e77 /configure.ac
parentde4c3d6aba7b0fe2b842ef759a259f1bc74acfc9 (diff)
configure: disconnect API version with SO version
We used to force applications to rebuild when a ODP released a new version that changed one of the first two digits. That shouldn't be needed if we use the SO-verson as it is intended to be used. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-by: Ricardo Salveti <ricardo.salveti@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c8fb91e4a..e2e18e8cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -63,8 +63,7 @@ AC_SUBST([ARCH])
##########################################################################
# Set correct platform library version
##########################################################################
-AGE=0
-ODP_LIBSO_VERSION=$(echo $VERSION.$AGE | awk -F . '{printf("%d:%d:%d\n", (($1 * 100) + $2), $3, $4)}')
+ODP_LIBSO_VERSION=$(cat ./.so_version)
AC_SUBST(ODP_LIBSO_VERSION)
##########################################################################