aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRubén Beltrán del Río <jj@r.bdr.sh>2026-01-18 18:04:31 +0100
committerRubén Beltrán del Río <jj@r.bdr.sh>2026-01-18 18:07:11 +0100
commit1125b770c557886fe4a910abe1ca7deebd44d5f6 (patch)
tree306acf9a3b8b8554dacd5a22d0782808bc89ccf6 /Makefile
parent1498b8b2acde9a20da08a009fa94bc2e6c80223b (diff)
Restore missing variables in rpm/deb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 587d164..57a54a4 100644
--- a/Makefile
+++ b/Makefile
@@ -200,7 +200,7 @@ endif
$(MAKE) build-container-$(distro)
@echo "=== Building RPM for $(distro) ($(arch)) ==="
podman run --rm -v $(CURDIR):/src:Z -w /src $(container_image_prefix):$(distro) \
- make package-rpm
+ make profile=$(profile) channel=$(channel) target=$(target) distro=$(distro) package-rpm
ifeq ($(clean_images),1)
podman rmi $(container_image_prefix):$(distro)
endif
@@ -212,7 +212,7 @@ endif
$(MAKE) build-container-$(distro)
@echo "=== Building DEB for $(distro) ($(arch)) ==="
podman run --rm -v $(CURDIR):/src:Z -w /src $(container_image_prefix):$(distro) \
- make package-deb
+ make profile=$(profile) channel=$(channel) target=$(target) distro=$(distro) package-deb
ifeq ($(clean_images),1)
podman rmi $(container_image_prefix):$(distro)
endif