summaryrefslogtreecommitdiffstats
path: root/recipes-containers/podman/podman_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-containers/podman/podman_git.bb')
-rw-r--r--recipes-containers/podman/podman_git.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb
index 355e0e09..c2f4e506 100644
--- a/recipes-containers/podman/podman_git.bb
+++ b/recipes-containers/podman/podman_git.bb
@@ -20,7 +20,6 @@ DEPENDS = " \
20SRCREV = "754ec89a8a185d308ca5ed08afaf34d6cbda08da" 20SRCREV = "754ec89a8a185d308ca5ed08afaf34d6cbda08da"
21SRC_URI = " \ 21SRC_URI = " \
22 git://github.com/containers/libpod.git;branch=v4.2;protocol=https \ 22 git://github.com/containers/libpod.git;branch=v4.2;protocol=https \
23 file://0001-Rename-BUILDFLAGS-to-GOBUILDFLAGS.patch;patchdir=src/import \
24 ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'file://50-podman-rootless.conf', '', d)} \ 23 ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'file://50-podman-rootless.conf', '', d)} \
25" 24"
26 25
@@ -46,6 +45,9 @@ export LDFLAGS=""
46# https://github.com/llvm/llvm-project/issues/53999 45# https://github.com/llvm/llvm-project/issues/53999
47TOOLCHAIN = "gcc" 46TOOLCHAIN = "gcc"
48 47
48# podmans Makefile expects BUILDFLAGS to be set but go.bbclass defines them in GOBUILDFLAGS
49export BUILDFLAGS="${GOBUILDFLAGS}"
50
49inherit go goarch 51inherit go goarch
50inherit systemd pkgconfig 52inherit systemd pkgconfig
51 53