From fef58bbf9c34a173b5ad97445d53c11dbe4fec04 Mon Sep 17 00:00:00 2001 From: Felix Geyer <fgeyer@debian.org> Date: Tue, 5 Apr 2016 21:49:36 +0200 Subject: [PATCH] Make build reproducible. Sort list of profiles. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index b61c412..897af90 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f PROFILES_DIR = $(CURDIR)/profiles -PROFILES = $(shell find $(PROFILES_DIR) -type f -maxdepth 1) +PROFILES = $(shell find $(PROFILES_DIR) -type f -maxdepth 1 | LC_ALL=C sort) PROFILE_NAMES = $(notdir $(PROFILES)) %: -- GitLab