aboutsummaryrefslogtreecommitdiffstats
path: root/indonesian
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 /indonesian
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 'indonesian')
-rw-r--r--indonesian/releases/etch/Makefile4
-rw-r--r--indonesian/releases/jessie/Makefile4
-rw-r--r--indonesian/releases/wheezy/Makefile4
3 files changed, 6 insertions, 6 deletions
diff --git a/indonesian/releases/etch/Makefile b/indonesian/releases/etch/Makefile
index 276f2fcdd96..da1d53046f6 100644
--- a/indonesian/releases/etch/Makefile
+++ b/indonesian/releases/etch/Makefile
@@ -12,11 +12,11 @@ index.$(LANGUAGE).html: index.wml $(TEMPLDIR)/release.wml \
releasenotes.$(LANGUAGE).html: releasenotes.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/etch/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/release-notes*)
+ $(sort $(wildcard $(HTMLDIR)/*/release-notes*))
installmanual.$(LANGUAGE).html: installmanual.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/etch/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/install*)
+ $(sort $(wildcard $(HTMLDIR)/*/install*))
etchnhalf.$(LANGUAGE).html: etchnhalf.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/etch/release.data
diff --git a/indonesian/releases/jessie/Makefile b/indonesian/releases/jessie/Makefile
index 3561d7f9243..35d4c2bc311 100644
--- a/indonesian/releases/jessie/Makefile
+++ b/indonesian/releases/jessie/Makefile
@@ -12,8 +12,8 @@ index.$(LANGUAGE).html: index.wml $(TEMPLDIR)/release.wml \
releasenotes.$(LANGUAGE).html: releasenotes.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/jessie/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/release-notes*)
+ $(sort $(wildcard $(HTMLDIR)/*/release-notes*))
installmanual.$(LANGUAGE).html: installmanual.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/jessie/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/install*)
+ $(sort $(wildcard $(HTMLDIR)/*/install*))
diff --git a/indonesian/releases/wheezy/Makefile b/indonesian/releases/wheezy/Makefile
index 76067d7b95e..6b625132fae 100644
--- a/indonesian/releases/wheezy/Makefile
+++ b/indonesian/releases/wheezy/Makefile
@@ -12,8 +12,8 @@ index.$(LANGUAGE).html: index.wml $(TEMPLDIR)/release.wml \
releasenotes.$(LANGUAGE).html: releasenotes.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/wheezy/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/release-notes*)
+ $(sort $(wildcard $(HTMLDIR)/*/release-notes*))
installmanual.$(LANGUAGE).html: installmanual.wml $(TEMPLDIR)/release.wml \
$(ENGLISHDIR)/releases/wheezy/release.data $(TEMPLDIR)/release_info.wml \
- $(wildcard $(HTMLDIR)/*/install*)
+ $(sort $(wildcard $(HTMLDIR)/*/install*))

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