From 63ab47f774d1e29a02a6ee9813905737c3f5bc4c Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 10 Feb 2024 20:03:11 +0100 Subject: [PATCH] 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 environment variable's area value with the For example, to enable the B “pie” feature and disable the “fortify” feature you can do this in B: - export DEB_BUILD_MAINT_OPTIONS=hardening=+pie,-fortify + export DEB_BUILD_MAINT_OPTIONS = hardening=+pie,-fortify The special feature B (valid in any area) can be used to enable or disable all area features at the same time. Thus disabling everything in the B 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 -- 2.11.4.GIT