summaryrefslogtreecommitdiff
path: root/scripts/prereq.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-03-19 19:47:15 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-03-19 19:48:08 +0100
commit561fccc5e3918e0a4e7d17dc480b65c53998f525 (patch)
tree35bcf2d41b3bc5d083a69c085e390e366116dece /scripts/prereq.sh
parentf986fc6df796193454391e8b3602c318fcab7042 (diff)
darwin: brew users must install pkg-config, so that make kerneloconfig works
Diffstat (limited to 'scripts/prereq.sh')
-rwxr-xr-xscripts/prereq.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh
index 195acd2be..e5e314b6a 100755
--- a/scripts/prereq.sh
+++ b/scripts/prereq.sh
@@ -415,6 +415,17 @@ fi
rm test.c test 2>/dev/null
rm Makefile.tmp 2>/dev/null
+# for make kernelconfig pkg-config is required to find ncurses
+if [ $os = "Darwin" ]; then
+ printf " ---> checking if pkg-config is installed.. "
+ if ! which pkg-config >/dev/null 2>&1; then
+ printf "not found\n"
+ out=1
+ else
+ printf "found\n"
+ fi
+fi
+
# error out on any required prerequisite
if [ $out -ne 0 ]; then
exit