diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:00:04 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-16 00:00:04 +0000 |
commit | e814b463a7a42e6c2d67cac00e064afd9602a939 (patch) | |
tree | 27381564f0d8de994dd66aa889fa978947a7ed64 /configure | |
parent | 20427e636ad8c2af83cc3b3337306cf72ce55440 (diff) | |
download | s6-dns-e814b463a7a42e6c2d67cac00e064afd9602a939.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." |