From: Bruno Meneguele on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1579#note_829406860 Right, but Make expand vars guarding them with quotes, so in case PKGRELEASE is defined as `'<something>'` the quotes would be counted (double quotes would be ignored though): ```makefile TEST := asd PKGRELEASE := '$(TEST)' asd: echo -n "$(PKGRELEASE)" | wc -c ``` ``` $ make asd echo -n "'asd'" | wc -c 5 ``` Currently, PKGRELEASE is defined without any quotes, so that's fine, but since Make does use quote during var expansion the `echo` can safely omit it and avoid these quirks in the future :). _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx 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/kernel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure