summaryrefslogtreecommitdiffstats
path: root/mltk
diff options
context:
space:
mode:
authorJonathan Bauer2018-08-10 13:06:32 +0200
committerJonathan Bauer2018-08-10 13:06:32 +0200
commita13339b624d7dcca5a20b75b630a43f77152bd27 (patch)
treead1453e5006efeaeef385d8217c9964764d47115 /mltk
parent[run-virt] Linux scripts more documentation (diff)
downloadmltk-a13339b624d7dcca5a20b75b630a43f77152bd27.tar.gz
mltk-a13339b624d7dcca5a20b75b630a43f77152bd27.tar.xz
mltk-a13339b624d7dcca5a20b75b630a43f77152bd27.zip
[mltk] add rsync to dev tools -.-
Diffstat (limited to 'mltk')
-rwxr-xr-xmltk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mltk b/mltk
index 73185652..bdfaacaf 100755
--- a/mltk
+++ b/mltk
@@ -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 lsb_release strings wget" # '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" # '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 pkg-config cmake automake autoconf binutils lsb-release wget"
+ pinfo "apt-get install build-essential m4 pkg-config cmake automake autoconf binutils lsb-release wget rsync"
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"
+ pinfo "zypper install gcc gcc-c++ make m4 binutils git module-init-tools patch pkg-config cmake lsb-release wget rsync"
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"
+ pinfo "yum install redhat-lsb gcc-c++ gcc make m4 binutils pkgconfig patch cmake lsb-release wget rsync"
;;
*)
perror "No installation help for $SYS_DISTRIBUTION available."