[Vm-dev] [commit][2990] Add a makeallinstall script to build.win32x86

commits at squeakvm.org commits at squeakvm.org
Wed Jun 11 22:14:24 UTC 2014


Revision: 2990
Author:   eliot
Date:     2014-06-11 15:14:24 -0700 (Wed, 11 Jun 2014)
Log Message:
-----------
Add a makeallinstall script to build.win32x86

Added Paths:
-----------
    branches/Cog/build.win32x86/makeallinstall

Added: branches/Cog/build.win32x86/makeallinstall
===================================================================
--- branches/Cog/build.win32x86/makeallinstall	                        (rev 0)
+++ branches/Cog/build.win32x86/makeallinstall	2014-06-11 22:14:24 UTC (rev 2990)
@@ -0,0 +1,9 @@
+#!/bin/bash
+trap 'exit 2' HUP INT PIPE TERM 0
+for d in newspeak.*/installer squeak.*/installer; do
+	if test -d "$d"; then
+		(cd $d;make)
+	else
+		echo no $d directory found
+	fi
+done


Property changes on: branches/Cog/build.win32x86/makeallinstall
___________________________________________________________________
Added: svn:executable
   + *



More information about the Vm-dev mailing list