summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2014-12-15 23:43:24 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2014-12-15 23:43:24 +0000
commit3b3c434624a8b2cb388706c10471b8190e3f5713 (patch)
treed79598d273fc23d33c381258b4c1aa6a6afb7553 /configure
parent44f6656cd7f212d96a0021e92a9f53e6b0172d83 (diff)
downloadexecline-3b3c434624a8b2cb388706c10471b8190e3f5713.tar.xz
Fix order of includes in Makefile
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 13 insertions, 3 deletions
diff --git a/configure b/configure
index efe87d4..16590e5 100755
--- a/configure
+++ b/configure
@@ -344,9 +344,19 @@ if $allstatic ; then
vpathd=
fi
echo "vpath lib%.so$vpathd"
-echo
-$static || echo "STATIC_LIBS :="
-$shared || echo "SHARED_LIBS :="
+echo "STATIC_LIBS :="
+echo "SHARED_LIBS :="
+if $static ; then
+ echo "DO_STATIC := 1"
+else
+ echo "DO_STATIC :="
+fi
+if $shared ; then
+ echo "DO_SHARED := 1"
+else
+ echo "DO_SHARED :="
+fi
+
exec 1>&3 3>&-
echo " ... done."