diff options
author | Jonathan Bauer | 2018-08-10 12:05:07 +0200 |
---|---|---|
committer | Jonathan Bauer | 2018-08-10 12:05:07 +0200 |
commit | 338f25f4d238bc8a226e0e27b411448664d1e1fb (patch) | |
tree | dcc44785f5b94942c3baa90481f34f73dc71f5b0 /mltk | |
parent | [run-virt] Linux scripts: only share name linked if given. (diff) | |
download | mltk-338f25f4d238bc8a226e0e27b411448664d1e1fb.tar.gz mltk-338f25f4d238bc8a226e0e27b411448664d1e1fb.tar.xz mltk-338f25f4d238bc8a226e0e27b411448664d1e1fb.zip |
[mltk] update dev tools
Diffstat (limited to 'mltk')
-rwxr-xr-x | mltk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -103,7 +103,7 @@ check_devtools() { # Checking for needed development tools, compilers etc. # Required: m4 make gcc g++ binutils # no qmake here, qmake (libqt4-devel) should be installed in a module! - local DEV_TOOLS="gcc g++ make cmake m4 strip git depmod patch pkg-config automake autoconf aclocal" # 'strip' as marker for binutils + local DEV_TOOLS="gcc g++ make cmake m4 strip git depmod patch pkg-config automake autoconf aclocal lsb-release strings" # 'strip' as marker for binutils # DEV_CHECK marks missing dev-tools local DEV_TOOLS_MISSING="" @@ -117,16 +117,16 @@ check_devtools() { pinfo "For $SYS_DISTRIBUTION you probably need to run:" case $SYS_DISTRIBUTION in ubuntu | debian) - pinfo "apt-get install build-essential m4 squashfs-tools pkg-config cmake automake autoconf" + pinfo "apt-get install build-essential m4 pkg-config cmake automake autoconf binutils lsb-release" pinfo "to install missing development tools." ;; # FIXME: Don't know how precise this filter works so we might want to have a better matching ... opensuse) - pinfo "zypper install gcc gcc-c++ make m4 binutils git module-init-tools patch squashfs pkg-config cmake" + pinfo "zypper install gcc gcc-c++ make m4 binutils git module-init-tools patch pkg-config cmake lsb-release" pinfo "to install missing development tools." ;; fedora | scientific | centos) - pinfo "yum install redhat-lsb gcc-c++ gcc make m4 binutils pkgconfig patch cmake" + pinfo "yum install redhat-lsb gcc-c++ gcc make m4 binutils pkgconfig patch cmake lsb-release" ;; *) perror "No installation help for $SYS_DISTRIBUTION available." |