meta-virtualization/recipes-containers/oci-runtime-tools/files/0001-build-use-for-cross-compiler.patch
Bruce Ashfield 2119189361 treewide: bulk update patches with status field
While the insane.bbclass upstream-status check hasn't been made
default, users of meta-virtualization may have it enabled in their
distros .. so the effect is the same. We must have this tracking
tag in out patches.

This is a bulk update to add the tag and silence the QA message.

As packages get updated, the normal/routine process of checking
the patches will continue, and the status fields may (or may not)
get more useful.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2023-01-27 10:32:06 -05:00

31 lines
1.0 KiB
Diff

From b4ad9b2a57d6c736870657c06959ccc44b578f12 Mon Sep 17 00:00:00 2001
From: Bruce Ashfield <bruce.ashfield@gmail.com>
Date: Tue, 30 Jun 2020 23:47:08 -0400
Subject: [PATCH] build: use for cross compiler
Upstream-Status: Inappropriate [embedded specific]
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
a/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: oci-runtime-tools-0.9.0+gitAUTOINC+0105384f68/Makefile
===================================================================
--- oci-runtime-tools-0.9.0+gitAUTOINC+0105384f68.orig/Makefile
+++ oci-runtime-tools-0.9.0+gitAUTOINC+0105384f68/Makefile
@@ -13,11 +13,11 @@
all: tool runtimetest validation-executables
tool:
- go build $(BUILD_FLAGS) -o oci-runtime-tool ./cmd/oci-runtime-tool
+ ${GO} build $(BUILD_FLAGS) -o oci-runtime-tool ./cmd/oci-runtime-tool
.PHONY: runtimetest
runtimetest:
- go build $(STATIC_BUILD_FLAGS) -o runtimetest ./cmd/runtimetest
+ ${GO} build $(STATIC_BUILD_FLAGS) -o runtimetest ./cmd/runtimetest
.PHONY: man
man: