2008-12-03 16:46:21 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# This script is called automatically during autobuild checkin.
|
|
|
|
|
|
|
|
ln -f timezone.changes timezone-java.changes
|
|
|
|
|
|
|
|
for spec in timezone-java.spec; do
|
|
|
|
{ sed -n -e '1,/COMMON-BEGIN/p' $spec.in
|
|
|
|
sed -n -e '/COMMON-BEGIN/,/COMMON-END/p' timezone.spec
|
2011-10-25 14:48:33 +02:00
|
|
|
sed -n -e '/COMMON-END/,/COMMON-PREP-BEGIN/p' $spec.in
|
|
|
|
sed -n -e '/COMMON-PREP-BEGIN/,/COMMON-PREP-END/p' timezone.spec
|
|
|
|
sed -n -e '/COMMON-PREP-END/,$p' $spec.in; } > $spec.tmp && mv $spec.tmp $spec
|
2008-12-03 16:46:21 +01:00
|
|
|
done
|