diff options
author | Thomas Sachau <tommy@gentoo.org> | 2008-09-08 20:22:28 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2008-09-08 20:22:28 +0000 |
commit | 33c54a4a64c1e7ff9300c3ab4db1bea457e0d846 (patch) | |
tree | 67b631147bc65722bb9a51c08fb5f7c9592ec48d /scripts | |
parent | Automatic update to use.local.desc (diff) | |
download | sunrise-reviewed-33c54a4a64c1e7ff9300c3ab4db1bea457e0d846.tar.gz sunrise-reviewed-33c54a4a64c1e7ff9300c3ab4db1bea457e0d846.tar.bz2 sunrise-reviewed-33c54a4a64c1e7ff9300c3ab4db1bea457e0d846.zip |
sunrise/sunrise/scripts/use_desc_gen.sh: Set LC_ALL to C so that sorting gives the same result for everyone
svn path=/sunrise/; revision=7034
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/use_desc_gen.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/use_desc_gen.sh b/scripts/use_desc_gen.sh index 02e48b5e9..c9d378b92 100644 --- a/scripts/use_desc_gen.sh +++ b/scripts/use_desc_gen.sh @@ -47,6 +47,7 @@ python scripts/use_desc_gen.py --repo_path "${1}" > /tmp/${pid}.new.use # let's keep it sorted: use major category, minor category, and package name # as primary, secondary, and tertiary sort keys, respectively +LC_ALL=C sort -t: -k1,1 -k2 /tmp/${pid}.new.use | sort -s -t/ -k1,1 \ >> /tmp/${pid}.use.local.desc |