diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
commit | d2e5a673aa7637c990ca7307e831327eb67e3fe7 (patch) | |
tree | 70e2d421684317208dc94db354551aca749b3328 /scripts | |
parent | a8259a651484f6dd5051a20e64f43ae27fc04613 (diff) | |
parent | 6d7a7f4776711758cf5b59028378f01cd8eba493 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-pkgs.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 524680b05..69f2b1e3a 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -1,5 +1,6 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. +# # Scan host-tool prerequisites of certain packages before building. if test -z "$BASH_VERSION"; then @@ -61,8 +62,10 @@ fi if [[ -n $NEED_SSLDEV ]]; then if ! test -f /usr/lib/pkgconfig/openssl.pc >/dev/null; then - echo >&2 You need openssl headers to build $NEED_SQUID - out=1 + if ! test -f /usr/include/openssl/ssl.h >/dev/null; then + echo >&2 You need openssl headers to build $NEED_SQUID + out=1 + fi fi fi |