|
Author: eliot
Date: 2011-07-29 17:11:58 -0700 (Fri, 29 Jul 2011)
New Revision: 2478
Modified:
branches/Cog/scripts/mkvmarchives
Log:
Rename the newspeak linux executables in mkvmarchives since doing it in
config land is soooo muuuuuch wooork.
Modified: branches/Cog/scripts/mkvmarchives
===================================================================
--- branches/Cog/scripts/mkvmarchives 2011-07-29 23:48:34 UTC (rev 2477)
+++ branches/Cog/scripts/mkvmarchives 2011-07-30 00:11:58 UTC (rev 2478)
@@ -90,9 +90,13 @@
EXES="$EXES cogmtwin/Croquet.exe"
fi
if [ -n "$NL" ]; then
+ LIBDIR=nsvmlinux/lib/squeak/[0-9.-]*
+ test -f nsvmlinux/squeak && mv nsvmlinux/squeak nsvmlinux/nsvm
+ test -f nsvmlinux/bin/squeak && mv nsvmlinux/bin/squeak nsvmlinux/bin/nsvm
+ test -f $LIBDIR/squeak && mv $LIBDIR/squeak $LIBDIR/nsvm
rm -rf nsvmlinux.tgz
COPYFILE_DISABLE=1 tar czf nsvmlinux.tgz nsvmlinux
- EXES="$EXES nsvmlinux/lib/squeak/[0-9.-]*/squeak"
+ EXES="$EXES $LIBDIR/nsvm"
fi
if [ -n "$NM" ]; then
test -d Newspeak\ Virtual\ Machine.app || mkdir Newspeak\ Virtual\ Machine.app
|