Skip to content

Commit

Permalink
fix linux SDK without DTS
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jun 7, 2020
1 parent 880bb03 commit 513a249
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/jenkins/include/scripts/pkg/gnutls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# see http://www.linuxfromscratch.org/blfs/view/cvs/postlfs/gnutls.html
GNUTLS_VERSION=3.6.13
GNUTLS_VERSION_MICRO= #.1
if [ "${CENTOS}" = 6 ] && [ -z "${DTS}" ]; then
if [ "${CENTOS:-0}" = 6 ] && [ -z "${DTS+x}" ]; then
GNUTLS_VERSION=3.6.8
GNUTLS_VERSION_MICRO=
# 3.6.9 and later fail on CentOS6 (probably needs an updated binutils/gas) with:
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/include/scripts/pkg/imagemagick6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Install ImageMagick6
# see http://www.linuxfromscratch.org/blfs/view/cvs/general/imagemagick6.html
MAGICK_VERSION=6.9.11-6
if [ "${CENTOS}" = 6 ] && [ -z "${DTS}" ]; then
if [ "${CENTOS:-0}" = 6 ] && [ -z "${DTS+x}" ]; then
MAGICK_VERSION=6.9.10-78 # 6.9.10-79 and later fail to compile on CentOS6 with "undefined reference to `aligned_alloc'"
fi
MAGICK_VERSION_SHORT=${MAGICK_VERSION%-*}
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/include/scripts/pkg/imagemagick7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# install ImageMagick7
# see http://www.linuxfromscratch.org/blfs/view/cvs/general/imagemagick.html
MAGICK7_VERSION=7.0.10-6
if [ "${CENTOS}" = 6 ] && [ -z "${DTS}" ]; then
if [ "${CENTOS:-0}" = 6 ] && [ -z "${DTS+x}" ]; then
MAGICK7_VERSION=7.0.9-8 # 7.0.9-9 (probably) and later fail to compile on CentOS6 with "undefined reference to `aligned_alloc'"
fi
MAGICK7_VERSION_SHORT=${MAGICK7_VERSION%-*}
Expand Down

0 comments on commit 513a249

Please sign in to comment.