diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:01:35 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:01:35 +0000 |
commit | 964144b5207efc540c68aa1ae2b74626f3d59ac6 (patch) | |
tree | ff368c2b0fcbd5834a11bc6ee02443086a794313 /configure | |
parent | e0fc82203d677a6f1e808e9a1a46176c109d89be (diff) | |
download | s6-networking-964144b5207efc540c68aa1ae2b74626f3d59ac6.tar.xz |
Fix include order in Makefile
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -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." |