From 6e2120ea29a30b1379ee9454ab410088fac0e8f7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 17 Oct 2013 18:01:21 +0200 Subject: fix script --- scripts/scan-pkgs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.3