From 627626afd42f920d0330655d967ce712e4706396 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 5 Jul 2013 14:26:30 +0200 Subject: [PATCH] GeneratedRepositoryPackageList: defeat localization Set LC_ALL=C, so "sort" produces useful results. --- build/jam/RepositoryRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/RepositoryRules b/build/jam/RepositoryRules index 10285608f9..7dab8d6ccd 100644 --- a/build/jam/RepositoryRules +++ b/build/jam/RepositoryRules @@ -78,7 +78,7 @@ actions GeneratedRepositoryPackageList1 { (for file in $(HAIKU_REPOSITORY_PACKAGE_FILE_NAMES) ; do echo $file - done) | sort -u > $(1) + done) | LC_ALL=C sort -u > $(1) }