#!/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=7.1
r=359

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/OSX10\.\(.\).*dmg/OSX10.\1.dmg/'`
	rm -f $f1
	ln -s $d/$f $f1
done
                        

