no static builds for rolling releases by default

This commit is contained in:
filux 2015-12-13 23:50:43 +01:00
parent 492a7e4c53
commit c47add1ef1
1 changed files with 6 additions and 0 deletions

View File

@ -148,6 +148,8 @@ echo ' [ '"$distribution"' ] [ '"$release"' ] [ '"$codename"' ] [ '"$architectur
if [ "$WANT_STATIC_LIBS" = "-DWANT_STATIC_LIBS=ON" ]; then
EXTRA_CMAKE_OPTIONS="${EXTRA_CMAKE_OPTIONS} -DSTATIC_FONTCONFIG=OFF"
fi
if [ "$release" != "rolling" ]; then
case $distribution in
Debian)
case $release in
@ -209,6 +211,10 @@ case $distribution in
WANT_STATIC_LIBS="-DWANT_STATIC_LIBS=OFF"
;;
esac
else
echo 'Turning ON dynamic LIBS ...'
WANT_STATIC_LIBS="-DWANT_STATIC_LIBS=OFF"
fi
#exit 1;