summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2013-10-15 12:45:42 +0200
committerJonathan Bauer2013-10-15 12:45:42 +0200
commitd8d11cccf070281d505a2e3df61c3b7046128fc6 (patch)
treef2e50462737ccb94ac4a75ba07105a0ab412de0a
parent[openSuse] opensuse Stage32 target links (diff)
downloadtm-scripts-d8d11cccf070281d505a2e3df61c3b7046128fc6.tar.gz
tm-scripts-d8d11cccf070281d505a2e3df61c3b7046128fc6.tar.xz
tm-scripts-d8d11cccf070281d505a2e3df61c3b7046128fc6.zip
[mltk] add 'qmake' to the list of needed dev-tools
-rwxr-xr-xmltk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mltk b/mltk
index 31f24c89..d6380a03 100755
--- a/mltk
+++ b/mltk
@@ -102,7 +102,7 @@ print_usage() {
check_devtools() {
# Checking for needed development tools, compilers etc.
# Required: m4 make gcc g++ binutils
- DEVTOOLS="gcc c++ g++ make m4 strip git depmod patch mksquashfs pkg-config" # 'strip' as marker for binutils
+ DEVTOOLS="gcc c++ g++ make m4 strip git depmod patch mksquashfs pkg-config qmake" # 'strip' as marker for binutils
for i in $DEVTOOLS; do
which "$i" 2>/dev/null 1>&2 || { echo "Essential development tool $i not found - exiting."; exit 1; }
done