From 854d6aa45fb67ea287de8117bbfd26ac48931466 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Mon, 11 Jul 2016 14:19:18 -0700 Subject: [PATCH] app-emulation/rkt: Fix PXE_SYSTEMD_VERSION Remove duplicate 'v'. PXE_SYSTEMD_VERSION has a 'v', and src_configure() was adding a 'v', so we were getting a version as 'vvXXX' Signed-off-by: Geoff Levand --- .../coreos-overlay/app-emulation/rkt/rkt-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/rkt/rkt-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/rkt/rkt-9999.ebuild index 84564aecf2..6039c0af97 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/rkt/rkt-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/rkt/rkt-9999.ebuild @@ -89,7 +89,7 @@ src_configure() { if use rkt_stage1_coreos; then add_stage1 "coreos" myeconfargs+=( --with-coreos-local-pxe-image-path="${DISTDIR}/${PXE_FILE}" ) - myeconfargs+=( --with-coreos-local-pxe-image-systemd-version=v"${PXE_SYSTEMD_VERSION}" ) + myeconfargs+=( --with-coreos-local-pxe-image-systemd-version="${PXE_SYSTEMD_VERSION}" ) fi if use rkt_stage1_fly; then add_stage1 "fly"