From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6555823750654197760 X-Received: by 2002:a2e:9c09:: with SMTP id s9-v6mr1219774lji.20.1526396663239; Tue, 15 May 2018 08:04:23 -0700 (PDT) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a19:1342:: with SMTP id j63-v6ls46678lfi.11.gmail; Tue, 15 May 2018 08:04:22 -0700 (PDT) X-Google-Smtp-Source: AB8JxZr2TjJemd7kB7XgjG3rlKTZFmUm9OxX04Qh4G202LiblwNZvAWcCcFl7WKjHxk9SN+QHzM+ X-Received: by 2002:a19:5014:: with SMTP id e20-v6mr1088877lfb.9.1526396662134; Tue, 15 May 2018 08:04:22 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1526396662; cv=none; d=google.com; s=arc-20160816; b=rTMJox4FQoO8okptSmJWr7or21GmXy0PgSf/ZX3Baw0Ahl29sfB/KKPs4JdmnVZ3G4 eea+A+MLGPFFz01EW4NMhstAcTsI+zW7YTaJ2+4Lj/wX8pX3f9BixqA/hYnexRZmLd/5 09c2oFbofqSFfTaSdFk0O5uNG1z7fD5XQEoS0PD0kUsikyue6k60X1pS4RJ4rdJUcJGn i9TRM7JPqrqmsw/3OlZKBcz3NutmIHAV2Ei7glAZ+Hb4a1kGlABAEJqX+EbwwMJv3Ouo ftyTYhcCC6N9sXqEp6HWyLQCTuuvoP8KJjotplFphRtZuZhQKj34i4zsu8FNa1z1X63q rmcA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=MpU1E81FnC2uEsspcvidjYGc5aBuTzoMfPmHVc7Hsts=; b=psKryI3bQxcwXPvXqqUrgDrqmTiCbdfl/gYI8CiQCaVNoRu1JTDNUAecCxBvYWxjOY tvypAJkFjIUTi/48Pc6W0b6qgIal/tBk687pwzOelf3FjithJ+Z1oIht7QbIvlVxb6I8 4gFBLyWeML/Ya1MUWaNcUT9PERKUtAaqsMNlwzPZGQG3sFpGOjUMc+8xlxKnmPPvaR1S 05iyXuNmyHIhUiXD3DbF1hUkjaL1pL1hH1v8V9xUEjDIoZPX+QAqs0WrZI7SMUo6X2g4 KaT6umN5/l9HE9swB5oQbMcPESc4PwliKetYmc2REL/AyqAGe3KsfhaqqJHqsxExxn+M WicA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id v13-v6si14878lji.0.2018.05.15.08.04.21 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 15 May 2018 08:04:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Received: from localhost.localdomain ([188.227.110.165]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id w4FF44ur014935 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 15 May 2018 17:04:10 +0200 From: Alexander Smirnov To: isar-users@googlegroups.com Cc: Alexander Smirnov Subject: [PATCH] debootstrap: Fix parameters passing Date: Tue, 15 May 2018 18:03:58 +0300 Message-Id: <20180515150358.15564-1-asmirnov@ilbers.de> X-Mailer: git-send-email 2.9.5 X-TUID: ypKk8q+lnwc5 According to the debootstrap man page, the values for command line arguments should be assigned via '=' sign instead of whitespace. This patch makes debootstrap usage in accordance with the man page. Signed-off-by: Alexander Smirnov --- meta/recipes-core/isar-bootstrap/isar-bootstrap.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/isar-bootstrap/isar-bootstrap.bb b/meta/recipes-core/isar-bootstrap/isar-bootstrap.bb index 68761b1..fceb9df 100644 --- a/meta/recipes-core/isar-bootstrap/isar-bootstrap.bb +++ b/meta/recipes-core/isar-bootstrap/isar-bootstrap.bb @@ -183,8 +183,8 @@ do_bootstrap() { fi E="${@bb.utils.export_proxies(d)}" sudo -E "${DEBOOTSTRAP}" --verbose \ - --variant minbase \ - --arch "${DISTRO_ARCH}" \ + --variant=minbase \ + --arch="${DISTRO_ARCH}" \ ${@get_distro_components_argument(d)} \ ${DEBOOTSTRAP_KEYRING} \ "${@get_distro_suite(d)}" \ -- 2.9.5