From 78fc2bda35591530231ffe374f0c6523a2220caa Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 22 Oct 2012 12:31:32 +0200 Subject: minor dependency update (chmod in coreutils is used) --- dependency-test.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dependency-test.sh') diff --git a/dependency-test.sh b/dependency-test.sh index 770873c..3c5301b 100755 --- a/dependency-test.sh +++ b/dependency-test.sh @@ -15,6 +15,7 @@ ro=0 (hash mkdir 2>/dev/null) || (br=1 ; echo 'Missing mkdir, install coreutils [build required]') (hash cp 2>/dev/null) || (br=1 ; echo 'Missing cp, install coreutils [build required]') (hash cut 2>/dev/null) || (br=1 ; echo 'Missing cut, install coreutils [build required]') +(hash chmod 2>/dev/null) || (br=1 ; echo 'Missing chmod, install coreutils [build required]') (hash bash 2>/dev/null) || (bs=1 ; echo 'Missing bash, install bash [build recommended]') @@ -32,6 +33,7 @@ ro=0 (hash tty2colourfultty 2>/dev/null) || (ro=1 ; echo 'Missing tty2colourfultty, install util-say [runtime optional]') (hash ponysay2ttyponysay 2>/dev/null) || (ro=1 ; echo 'Missing ponysay2ttyponysay, install util-say [runtime optional]') +(hash chmod 2>/dev/null) || (rr=1 ; echo 'Missing chmod, install coreutils [runtime optional]') ( (test $br = 1) || (test $rr = 1) || (test $ro = 1) ) && echo -- cgit