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.
which
command -v
1 parent 3b24ecd commit a3d8761Copy full SHA for a3d8761
bootstrap
@@ -1,27 +1,27 @@
1
#!/bin/sh
2
3
-which autoconf
+command -v autoconf
4
if ! test $? -eq 0
5
then
6
echo "error, install autoconf"
7
exit 1
8
fi
9
10
-which automake
+command -v automake
11
12
13
echo "error, install automake"
14
15
16
17
-which libtool || which libtoolize
+command -v libtool || command -v libtoolize
18
19
20
echo "error, install libtool"
21
22
23
24
-which pkg-config
+command -v pkg-config
25
26
27
echo "error, install pkg-config"
0 commit comments