diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-02 12:03:09 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-02 12:03:09 +0100 |
commit | fbe47cba997e4f2f2dbaa6af0583dbec2e5d130c (patch) | |
tree | 63aa5fb4d8c8ad7e63aeaad50e5701a2918dbedd /scripts | |
parent | 216fc3f63dcf07f5bc644165ce1965d733330de0 (diff) |
remove dependencies to libiconv,pkg-config and file. use pkgconf and libiconv-tiny instead. fixes glib compile on systems without libiconv/ native iconv implementation
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-tools.sh | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index a587e5ad3..0b7b1d08c 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -213,12 +213,6 @@ if ! which wget >/dev/null 2>&1; then out=1 fi -if ! which file >/dev/null 2>&1; then - echo You must install \"file\" to continue. - echo - out=1 -fi - if ! which perl >/dev/null 2>&1; then echo You must install perl to continue. echo @@ -231,14 +225,14 @@ if ! which m4 >/dev/null 2>&1; then out=1 fi -if ! which pkg-config >/dev/null 2>&1; then - echo "You need pkg-config to continue." +if ! which bc >/dev/null 2>&1; then + echo "You need bc to continue." echo out=1 fi -if ! which bc >/dev/null 2>&1; then - echo "You need bc to continue." +if ! which xargs >/dev/null 2>&1; then + echo "You need xargs to continue." echo out=1 fi |