From: Prarit Bhargava <[email protected]> redhat/Makefile: Fix eln BUILD_TARGET
When the DIST is set to .eln, the BUILD_TARGET should be eln. Suggested-by: Justin Forbes <[email protected]> Signed-off-by: Prarit Bhargava <[email protected]> diff --git a/redhat/Makefile b/redhat/Makefile index blahblah..blahblah 100644 --- a/redhat/Makefile +++ b/redhat/Makefile @@ -262,7 +262,11 @@ else SINGLE_TARBALL:=1 RHDISTGIT_BRANCH:=rhel-$(RHEL_MAJOR).$(RHEL_MINOR).0 ifndef BUILD_TARGET - BUILD_TARGET:=rhel-$(RHEL_MAJOR)-scratch + ifeq ("$(DIST)", ".eln") + BUILD_TARGET:=eln + else + BUILD_TARGET:=rhel-$(RHEL_MAJOR)-scratch + endif endif SPECTARFILE_RELEASE:=$(BASEVERSION) SPECKABIVERSION:=$(BASEVERSION) -- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1913 _______________________________________________ kernel mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
