From 1a75818e7bf33f36be70287ed02ad13a95e41eb5 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Wed, 5 Nov 2014 14:55:47 +0100 Subject: [PATCH] common: fix "$repository" = "nonfree" comparision. --- common/xbps-src/shutils/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh index 8f1d3e2a2ec..74d5ebe2422 100644 --- a/common/xbps-src/shutils/common.sh +++ b/common/xbps-src/shutils/common.sh @@ -320,7 +320,7 @@ setup_pkg() { fi # For nonfree/bootstrap pkgs there's no point in building -dbg pkgs, disable them. - if [ -z "$XBPS_DEBUG_PKGS" -o -n "$repository" = "nonfree" -o -n "$bootstrap" ]; then + if [ -z "$XBPS_DEBUG_PKGS" -o "$repository" = "nonfree" -o -n "$bootstrap" ]; then disable_debug=yes fi # If a package sets force_debug_pkgs, always build -dbg pkgs.