diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 18:04:31 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 18:07:11 +0100 |
| commit | 1125b770c557886fe4a910abe1ca7deebd44d5f6 (patch) | |
| tree | 306acf9a3b8b8554dacd5a22d0782808bc89ccf6 /Makefile | |
| parent | 1498b8b2acde9a20da08a009fa94bc2e6c80223b (diff) | |
Restore missing variables in rpm/deb
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |