diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2013-10-03 09:45:00 +0200 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2013-10-03 09:45:00 +0200 |
commit | 05a7f514cca7e6858e5f5dd46cecd0c3bd6f9f71 (patch) | |
tree | 9f67adc12bb980b4c942cdb62155d5b1c1132551 /scripts | |
parent | 9019d28c87b2c0382834a8af861cda4dc12e2b06 (diff) | |
parent | 35a633529c04b797a8172d9e33d9fbb33a5777fc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-pkgs.sh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index b9888a4df..f794a8c37 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -104,7 +104,7 @@ if [[ -n $ADK_COMPILE_OPENJDK ]]; then fi if [[ -n $ADK_COMPILE_OPENJDK7 ]]; then - NEED_ZIP="$NEED_ZIP openjdk" + NEED_ZIP="$NEED_ZIP openjdk7" fi if [[ -n $ADK_COMPILE_OPENJDK7 ]]; then @@ -133,6 +133,10 @@ if [[ -n $ADK_COMPILE_AUTOMAKE ]]; then NEED_AUTOCONF="$NEED_AUTOCONF automake" fi +if [[ -n $ADK_COMPILE_COROSYNC ]]; then + NEED_GROFF="$NEED_GROFF corosync" +fi + if [[ -n $ADK_COMPILE_LIBTOOL ]]; then NEED_AUTOMAKE="$NEED_AUTOMAKE libtool" fi @@ -305,6 +309,13 @@ if [[ -n $NEED_LIBSSLDEV ]]; then fi fi +if [[ -n $NEED_GROFF ]]; then + if ! which groff >/dev/null 2>&1; then + echo >&2 You need groff to build $NEED_GROFF + out=1 + fi +fi + if [[ -n $NEED_MKFONTDIR ]]; then if ! which mkfontdir >/dev/null 2>&1; then echo >&2 You need mkfontdir to build $NEED_MKFONTDIR |