From: Herton R. Krzesinski on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1800#note_971239371

This is really not pretty, and makes you have to hack places where it's
sensitive to the double variable output.

I'm not a make expert, but finally I reached something that seems to work, if
I understood the problem correctly:

```
diff --git a/redhat/Makefile b/redhat/Makefile
index 660801fab39a..480f76750bae 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -714,7 +714,8 @@ dist-os-version:
        @echo "OSVERSION: $(RHEL_MAJOR).$(RHEL_MINOR)"

 dist-dump-variables:
-       @$(foreach V,$(sort $(.VARIABLES)), $(if $(filter-out environment%
default automatic, $(origin $V)),$(info $V=$($V) )))
+       $(eval VARS:=$(sort $(shell cat Makefile.variables | sed '/^#/d;
/^$$/d; s/[ ]*[?:]=.*//')))
+       @$(foreach V,$(sort $(.VARIABLES)), $(if $(filter-out environment
default automatic, $(origin $V)),$(info $V=$($V) ),$(if $(filter
$(VARS),$(V)),$(info $V=$($V)))))

 dist-self-test:
        @if test -x /usr/bin/bats; then \
```

What do you think?
_______________________________________________
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

Reply via email to