diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-17 18:01:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-17 18:01:21 +0200 |
commit | 6e2120ea29a30b1379ee9454ab410088fac0e8f7 (patch) | |
tree | 736812538c51cffb152ce053bea361c889e73ec7 | |
parent | 100d6808e8d4b82a7a7e970827431580046445b8 (diff) |
fix script
-rw-r--r-- | scripts/scan-pkgs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index e611f4269..757ae4256 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -19,12 +19,12 @@ test -z "$BASH_VERSION$KSH_VERSION" && exec $BASH $0 "$@" [[ -n $BASH_VERSION ]] && shopt -s extglob topdir=$(readlink -nf $(dirname $0)/.. 2>/dev/null || (cd $(dirname $0)/..; pwd -P)) OStype=$(uname) -isdeb=$(uname -a|grep '\(Debian\|Ubuntu\)') out=0 . $topdir/.config -if [ $isdeb -eq 0 ];then +uname -a|grep '\(Debian\|Ubuntu\)' >/dev/null 2>&1 +if [ $? -eq 0 ];then if [[ -n $ADK_COMPILE_PYTHON2 ]]; then NEED_DPKG_ARCHITECTURE="$NEED_DPKG_ARCHITECTURE python2" fi |