This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=63ab47f774d1e29a02a6ee9813905737c3f5bc4c commit 63ab47f774d1e29a02a6ee9813905737c3f5bc4c Author: Guillem Jover <[email protected]> AuthorDate: Sat Feb 10 20:03:11 2024 +0100 man: Add spaces around make variable assignments This makes it more clear that these are not shell variables, but make variables which accept spaces around variable assignments. --- man/dpkg-buildflags.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/dpkg-buildflags.pod b/man/dpkg-buildflags.pod index 6673a65ec..f926242ab 100644 --- a/man/dpkg-buildflags.pod +++ b/man/dpkg-buildflags.pod @@ -407,14 +407,14 @@ and B<DEB_BUILD_MAINT_OPTIONS> environment variable's area value with the For example, to enable the B<hardening> “pie” feature and disable the “fortify” feature you can do this in B<debian/rules>: - export DEB_BUILD_MAINT_OPTIONS=hardening=+pie,-fortify + export DEB_BUILD_MAINT_OPTIONS = hardening=+pie,-fortify The special feature B<all> (valid in any area) can be used to enable or disable all area features at the same time. Thus disabling everything in the B<hardening> area and enabling only “format” and “fortify” can be achieved with: - export DEB_BUILD_MAINT_OPTIONS=hardening=-all,+format,+fortify + export DEB_BUILD_MAINT_OPTIONS = hardening=-all,+format,+fortify =head2 abi -- Dpkg.Org's dpkg

