diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-02 01:56:27 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-02 01:56:27 +0200 |
commit | 780b42f229c9a4fc4f8a30844f5bc6a17ec2dcd9 (patch) | |
tree | 3e6517870991cec214d0cb7e66dd0db021d79a33 | |
parent | d628ef61770142a2a2f9271c17803b47bc13d524 (diff) |
python is required for gpsd build
-rwxr-xr-x | scripts/adkprepare.sh | 1 | ||||
-rw-r--r-- | scripts/scan-pkgs.sh | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/scripts/adkprepare.sh b/scripts/adkprepare.sh index 08503bafd..d90b9ef95 100755 --- a/scripts/adkprepare.sh +++ b/scripts/adkprepare.sh @@ -47,6 +47,7 @@ openbsd_full() { pkg_add -v m4 pkg_add -v autoconf-2.62p0 pkg_add -v gperf + pkg_add -v python-2.6.3p1 } netbsd() { diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 303935a9b..aff3f61f8 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -32,6 +32,10 @@ if [[ -n $ADK_NATIVE ]];then fi fi +if [[ -n $ADK_PACKAGE_GPSD ]]; then + NEED_PYTHON="$NEED_PYTHON gpsd" +fi + if [[ -n $ADK_PACKAGE_FIREFOX ]]; then NEED_ZIP="$NEED_ZIP firefox" NEED_LIBIDL="$NEED_LIBIDL firefox" @@ -265,5 +269,3 @@ if [[ -n $NEED_PYTHON ]]; then fi exit $out - -exit $out |