[2898] in Release_Engineering
Andrew locker bug fixes.
daemon@ATHENA.MIT.EDU (Bill Cattey)
Wed Jul 22 17:36:10 1992
Date: Wed, 22 Jul 1992 17:35:52 -0400 (EDT)
From: Bill Cattey <wdc@Athena.MIT.EDU>
To: rel-eng@Athena.MIT.EDU
Ezra: here is the email I promised you to fix the problems with the
absolute sym-links. I have fixed it for the andrew locker I intend to
release, but you may want to update the rel-eng version in case we copy
from it again.
To correct the wrong sym-links run the following script:
----8<----cut here
#!/bin/csh
foreach foo (decmips rsaix rt vax)
cd $foo/lib
ls -l templates
rm templates
ln -s tpls templates
ls -l templates
cd ../..
cd $foo/bin
ls -l runadew chart
rm runadew chart
ln -s runapp runadew
ln -s runapp chart
ls -l runadew chart
cd ../..
end
----8<----Cut here
There are 3 Imakefiles that have been changed to correct this situation
atk/Imakefile
atk/adew/Imakefile
atk/chart/Imakefile
I've updated my source tree. Perhaps you should put these files in your
source tree somewhere too.
-wdc