From: ng0 Date: Wed, 27 Nov 2019 21:52:55 +0000 (+0000) Subject: bootstrap: builtin type might be supported better X-Git-Tag: v0.12.0~67^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=74fbae9ea3b3f3a59ce611429fd66074cbccfa45;p=oweals%2Fgnunet.git bootstrap: builtin type might be supported better (or maybe they are equal) --- diff --git a/bootstrap b/bootstrap index 073308c43..e2654d9bd 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,12 @@ #!/bin/sh +# +# We should use /usr/bin/env sh, but some systems are notoriously picky. +# In fact we could ommit this line if some automations wouldn't rely on +# running this file via ./bootstrap. +# # This file is in the public domain. - +# SPDX-License-Identifier: 0BSD +# # We can't set -eu because we encounter warnings which # result in stops, whereas the warnings can for now be # safely ignored. @@ -16,7 +22,7 @@ cleanup() # the caveat of not(?) properly working on busybox's ash: existence() { - command -v "$1" >/dev/null 2>&1 + type "$1" >/dev/null 2>&1 } check_uncrustify()