#! /bin/sh
# Sort MANIFEST in (C locale) ascending order
# $Id: sort_MANIFEST 37328 2006-02-02 11:59:43Z quinot $

unset LANG LC_ALL LC_COLLATE
set -e
tmpf=MANIFEST.$$
trap 'rm -f $tmpf' 0
cp MANIFEST $tmpf
sort < $tmpf | uniq > MANIFEST
