summaryrefslogtreecommitdiffstats
path: root/mltk
diff options
context:
space:
mode:
authorSimon Rettberg2021-10-25 16:03:37 +0200
committerSimon Rettberg2021-10-25 16:03:37 +0200
commitceced8484364e5431ed9de8439ff78f39f2ab417 (patch)
tree74c3e21c0702eabe3539bc371226091a24876445 /mltk
parent[kernel-vanilla] Support override via CONFIG_KERNEL_VERSION (diff)
downloadmltk-ceced8484364e5431ed9de8439ff78f39f2ab417.tar.gz
mltk-ceced8484364e5431ed9de8439ff78f39f2ab417.tar.xz
mltk-ceced8484364e5431ed9de8439ff78f39f2ab417.zip
mltk: Require zstd
Diffstat (limited to 'mltk')
-rwxr-xr-xmltk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mltk b/mltk
index a19f94a8..e6a2338f 100755
--- a/mltk
+++ b/mltk
@@ -112,7 +112,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 lsb_release strings wget rsync lsof diff cmp" # '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 wget rsync lsof diff cmp zstd" # 'strip' as marker for binutils
# DEV_CHECK marks missing dev-tools
local DEV_TOOLS_MISSING=""
@@ -126,16 +126,16 @@ check_devtools() {
pinfo "For $SYS_DISTRIBUTION you probably need to run:"
case $SYS_DISTRIBUTION in
ubuntu | debian)
- pinfo "apt install build-essential m4 pkg-config cmake automake autoconf binutils lsb-release wget rsync diffutils lsof"
+ pinfo "apt install build-essential m4 pkg-config cmake automake autoconf binutils lsb-release wget rsync diffutils lsof zstd"
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 pkg-config cmake lsb-release wget rsync diffutils lsof"
+ pinfo "zypper install gcc gcc-c++ make m4 binutils git module-init-tools patch pkg-config cmake lsb-release wget rsync diffutils lsof zstd"
pinfo "to install missing development tools."
;;
fedora | scientific | centos)
- pinfo "yum install redhat-lsb gcc-c++ gcc make m4 binutils pkgconfig patch cmake lsb-release wget rsync diffutils lsof"
+ pinfo "yum install redhat-lsb gcc-c++ gcc make m4 binutils pkgconfig patch cmake lsb-release wget rsync diffutils lsof zstd"
;;
*)
perror "No installation help for $SYS_DISTRIBUTION available."