diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-15 14:20:17 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-15 14:20:17 -0400 |
commit | 819d09a251de910dfa1afc421d5d8d57c3f5fcb0 (patch) | |
tree | a1df55af4d80f320616df84e091475051b86667a /update-ignore.d/01update-ignore | |
parent | ef5dbb625a7d2a00bf2242dcffe109e9d8665785 (diff) |
Deal with unix^wlinux portability nonsense.
Diffstat (limited to 'update-ignore.d/01update-ignore')
-rwxr-xr-x | update-ignore.d/01update-ignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update-ignore.d/01update-ignore b/update-ignore.d/01update-ignore index 18520dc..7b2de72 100755 --- a/update-ignore.d/01update-ignore +++ b/update-ignore.d/01update-ignore @@ -171,9 +171,9 @@ if [ -e "$file" ]; then fi fi realfile="$file" - if which tempfile >/dev/null 2>&1; then + if which tempfile >/dev/null 2>&1 || type -p tempfile >/dev/null 2>&1; then tempfile="tempfile" - elif which mktemp >/dev/null 2>&1; then + elif which mktemp >/dev/null 2>&1 || type -p mktemp >/dev/null 2>&1; then tempfile="mktemp" else echo "etckeeper warning: can't find tempfile or mktemp" >&2 |