diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-26 19:53:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-26 19:53:24 +0100 |
commit | 34cb56011259bc83ff5915954b65626084fe6b98 (patch) | |
tree | ed587952ad2e14feb6607e7a56deab6e2dd56663 /scripts | |
parent | 058a90c3d2c4ffcd92b1bc7d0e92330277e02442 (diff) |
fix package depends
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/scan-pkgs.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index b546e5f8c..3e8478244 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -86,10 +86,14 @@ if [[ -n $ADK_PACKAGE_EGLIBC ]]; then NEED_GPERF="$NEED_GPERF eglibc" fi -if [[ -n $ADK_PACKAGE_FONT-BITSTREAM-100DPI ]]; then +if [[ -n $ADK_PACKAGE_FONT_BITSTREAM_100DPI ]]; then NEED_MKFONTDIR="$NEED_MKFONTDIR font-bitstream-100dpi" fi +if [[ -n $ADK_PACKAGE_FONT_BITSTREAM_75DPI ]]; then + NEED_MKFONTDIR="$NEED_MKFONTDIR font-bitstream-75dpi" +fi + if [[ -n $NEED_GETTEXT ]]; then if ! which xgettext >/dev/null 2>&1; then echo >&2 You need gettext to build $NEED_GETTEXT |