public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] debootstrap: Fix parameters passing
@ 2018-05-15 15:03 Alexander Smirnov
  0 siblings, 0 replies; only message in thread
From: Alexander Smirnov @ 2018-05-15 15:03 UTC (permalink / raw)
  To: isar-users; +Cc: Alexander Smirnov

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 <asmirnov@ilbers.de>
---
 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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-05-15 15:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-15 15:03 [PATCH] debootstrap: Fix parameters passing Alexander Smirnov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox