X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Fscript-functions;h=1786072d771c8c634af233be48314801582f5b40;hb=ebd1c1c5d48b3a12ec039783a2f865c251cf76c6;hp=58e33dbc43f2c89a231b87915011c2aab6b074e9;hpb=4bfb41b45facbda837c14aeac6ead19b112ee1d9;p=grml-etc-core.git diff --git a/etc/grml/script-functions b/etc/grml/script-functions index 58e33db..1786072 100644 --- a/etc/grml/script-functions +++ b/etc/grml/script-functions @@ -3,7 +3,6 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mit Okt 24 09:34:48 CEST 2007 [mika] ################################################################################ # {{{ set default PATH @@ -52,7 +51,7 @@ setdialog(){ check4progs(){ local RC='' for arg in $* ; do - type -p $arg >/dev/null 2>&1 || RC="$arg" + which $arg >/dev/null 2>&1 || RC="$arg" done if [ -n "$RC" ] ; then echo "$RC not installed"