summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2013-09-10 12:07:22 +0200
committerSimon Rettberg2013-09-10 12:07:22 +0200
commitc4bdc2d98cc458c0e885e6f314650779882b1b10 (patch)
treea7f4b88e50bd443782a94a7294c22c9a72a3185d
parent[nscd] Remove "netgroup" from nscd.conf as it is not available in all nscd ve... (diff)
downloadtm-scripts-c4bdc2d98cc458c0e885e6f314650779882b1b10.tar.gz
tm-scripts-c4bdc2d98cc458c0e885e6f314650779882b1b10.tar.xz
tm-scripts-c4bdc2d98cc458c0e885e6f314650779882b1b10.zip
[mltk] Actually really add pkg-config ( fixes commit:a3b435f6a1 )
-rwxr-xr-xmltk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mltk b/mltk
index 67b5e663..d705df50 100755
--- a/mltk
+++ b/mltk
@@ -92,7 +92,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" # 'strip' as marker for binutils
+ DEVTOOLS="gcc c++ g++ make m4 strip git depmod patch mksquashfs pkg-config" # '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