From c9004254ef3d56871ac4aca406a69d8fb93dca05 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 15 Dec 2014 23:54:43 +0000 Subject: Declare static/shared libs in configure, it's specific anyway --- configure | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 2078556..219d6a5 100755 --- a/configure +++ b/configure @@ -514,8 +514,17 @@ if test -n "$vpathd" ; then echo "vpath lib%.so$vpathd" fi -$static || echo "STATIC_LIBS :=" -$shared || echo "SHARED_LIBS :=" +if $static ; then + echo "STATIC_LIBS := libskarnet.a" +else + echo "STATIC_LIBS :=" +fi +if $shared ; then + echo "SHARED_LIBS := libskarnet.so" +else + echo "SHARED_LIBS :=" +fi + exec 1>&3 3>&- echo " ... done." -- cgit v1.2.3