mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
[Imported from Perforce change 9863 at 2006-12-01 22:21:02] Subversion-branch: /trunk/polyorb Subversion-revision: 37328
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#! /bin/sh
|
|
# Sort MANIFEST in (C locale) ascending order
|
|
# $Id$
|
|
|
|
unset LANG LC_ALL LC_COLLATE
|
|
set -e
|
|
tmpf=MANIFEST.$$
|
|
trap 'rm -f $tmpf' 0
|
|
cp MANIFEST $tmpf
|
|
sort < $tmpf | uniq > MANIFEST
|