diff options
| author | djcb <djcb@djcbsoftware.nl> | 2017-11-04 12:49:28 +0200 |
|---|---|---|
| committer | djcb <djcb@djcbsoftware.nl> | 2017-11-04 12:49:28 +0200 |
| commit | 40dd4751bfff9577badc25bf60ea7b9767ea3fd9 (patch) | |
| tree | 468ac5c901db7d46c4456ca9ad9207ba7083f6f6 /autogen.sh | |
| parent | 43df94fa39f42299bd6c66f103fbac8ba0c4037a (diff) | |
autogen.sh: don't require `which'
use posix standard "commmand" instead.
Diffstat (limited to 'autogen.sh')
| -rwxr-xr-x | autogen.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,8 @@ test -f mu/mu.cc || { exit 1 } -if test -z `which autoreconf`; then +command -V autoreconf > /dev/null +if [[ $? != 0 ]]; then echo "*** No autoreconf found, please install it ***" exit 1 fi |
