aboutsummaryrefslogtreecommitdiffstats
path: root/english/users
diff options
context:
space:
mode:
authorCyril Brulebois <kibi@debian.org>2019-03-11 00:36:30 +0000
committerCyril Brulebois <kibi@debian.org>2019-03-11 01:33:54 +0000
commit35e5a08057ab8953dcfaceab9f623c52be7a44e4 (patch)
treefe1626fe132cc5f38dc6c94269f2008fbca0381e /english/users
parente0496a1974f81c11d576b507c2c2a1d39538d44e (diff)
Reduce entropy by sorting the output of all $(wildcard …) calls
Introducing a function (i.e. sorted_wildcard) seemed to make sense at first but it would need to be defined in all Makefiles, before getting used. That's why a “replace all occurrences” approach was preferred in the end. Many occurrences aren't going to make a difference anyway, because they are about documenting target dependencies. But replacing everything means it's easier to check later on, in case entropy comes back. This file needs a slightly different diff because the Makefile snippet is embedded in a Perl script: english/security/parse-advisory.pl
Diffstat (limited to 'english/users')
-rw-r--r--english/users/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/english/users/Makefile b/english/users/Makefile
index cf25168ba69..d3c8d1ead60 100644
--- a/english/users/Makefile
+++ b/english/users/Makefile
@@ -8,10 +8,10 @@ SUBS=edu com org gov
include $(WMLBASE)/Make.lang
index.$(LANGUAGE).html: index.wml\
- $(wildcard edu/*.wml) $(wildcard $(ENGLISHSRCDIR)/users/edu/*.wml) \
- $(wildcard com/*.wml) $(wildcard $(ENGLISHSRCDIR)/users/com/*.wml) \
- $(wildcard org/*.wml) $(wildcard $(ENGLISHSRCDIR)/users/org/*.wml) \
- $(wildcard gov/*.wml) $(wildcard $(ENGLISHSRCDIR)/users/gov/*.wml) \
+ $(sort $(wildcard edu/*.wml)) $(sort $(wildcard $(ENGLISHSRCDIR)/users/edu/*.wml)) \
+ $(sort $(wildcard com/*.wml)) $(sort $(wildcard $(ENGLISHSRCDIR)/users/com/*.wml)) \
+ $(sort $(wildcard org/*.wml)) $(sort $(wildcard $(ENGLISHSRCDIR)/users/org/*.wml)) \
+ $(sort $(wildcard gov/*.wml)) $(sort $(wildcard $(ENGLISHSRCDIR)/users/gov/*.wml)) \
$(TEMPLDIR)/template.wml $(TEMPLDIR)/users_list.wml \
$(TEMPLDIR)/languages.wml $(TEMPLDIR)/users.wml $(GETTEXTDEP)
$(WML) $(<F)

© 2014-2024 Faster IT GmbH | imprint | privacy policy