We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56f454 commit 50c7831Copy full SHA for 50c7831
configure
@@ -12,6 +12,14 @@ err() {
12
exit 1
13
}
14
15
+
16
+need_cmd() {
17
+ if which $1 >/dev/null 2>&1
18
+ then msg "found $1"
19
+ else err "need $1"
20
+ fi
21
+}
22
23
make_dir() {
24
if [ ! -d $1 ]
25
then
@@ -63,6 +71,9 @@ probe_need() {
63
71
fi
64
72
65
73
74
+msg "looking for configure programs"
75
+need_cmd mkdir
76
+need_cmd printf
66
77
67
78
msg "recreating config.mk"
68
79
echo '' >config.mk
0 commit comments