diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-06 20:55:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-06 20:55:16 +0100 |
commit | 2401bd28ca9a2bc6b4f3be0b5c6e93d6575ca53a (patch) | |
tree | 3fdbef3952aaa3053563052d478d93e045014843 /scripts | |
parent | 0151157c0f04799a8c4673fc430c6bfebda83d7e (diff) |
search in /usr/local for curl headers
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-pkgs.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 4118383d5..1e4d6db8c 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -95,8 +95,10 @@ fi if [[ -n $NEED_CURLDEV ]];then if ! test -f /usr/include/curl/curl.h >/dev/null; then - echo >&2 You need curl headers to build $NEED_CURLDEV - out=1 + if ! test -f /usr/local/include/curl/curl.h >/dev/null; then + echo >&2 You need curl headers to build $NEED_CURLDEV + out=1 + fi fi fi |