#!/bin/sh
#set up symbolic links in distribution directory (run this there)
#but first
#manually create a v5.9.rel-10 directory and copy relevant alpha directory
#files to there.

# set these correctly!
v=6.0
r=4

d=v$v.rel-$r
files=`ls $d`
for f in $files ; do
	f1=`echo $f | sed "s/rel-$r.//"`
	f1=`echo $f1 | sed 's/darwin\(.\).*dmg/darwin\1.dmg/'`
	rm -f $f1
	ln -s $d/$f $f1
done
                        

