[commit] r2526 - make newspeak linux build's mvm run on ancient boxes

classic Classic list List threaded Threaded
1 message Options
commits-3 commits-3
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

[commit] r2526 - make newspeak linux build's mvm run on ancient boxes

 
Author: eliot
Date: 2012-01-20 15:46:37 -0800 (Fri, 20 Jan 2012)
New Revision: 2526

Modified:
   branches/Cog/nscogbuild/unixbuild/bld/mvm
Log:
make newspeak linux build's mvm run on ancient boxes


Modified: branches/Cog/nscogbuild/unixbuild/bld/mvm
===================================================================
--- branches/Cog/nscogbuild/unixbuild/bld/mvm 2012-01-20 23:37:41 UTC (rev 2525)
+++ branches/Cog/nscogbuild/unixbuild/bld/mvm 2012-01-20 23:46:37 UTC (rev 2526)
@@ -2,4 +2,6 @@
 test -f config.h || ../../../platforms/unix/config/configure --with-src=nscogsrc CFLAGS="-g -O2 -msse2 -D_GNU_SOURCE -DNDEBUG -DITIMER_HEARTBEAT=1 -DNO_VM_PROFILE=1 -DDEBUGVM=0" LIBS="-lpthread -luuid"
 ../../../scripts/nukeversion
 rm -rf ../../../nsvmlinux
-make install prefix=`readlink -f \`pwd\`/../../../nsvmlinux`
+# would prefer make install prefix=`readlink -f \`pwd\`/../../../nsvmlinux`
+# but older linux readlinks lack the -f flag
+make install prefix=`(cd ../../../;pwd)`/nsvmlinux

Loading...