about summary refs log tree commit diff stats
path: root/build
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-09-11 19:04:49 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-11 19:53:23 -0700
commitecfbbfb5b58aaba9f9265cb13b9fb4a914bdcf37 (patch)
tree486cd5f4ee75323b5c733912c7a58501d65b0325 /build
parent4d53de8afa0d44e29d3caeb01ccdd02bc2e4cd70 (diff)
downloadmu-ecfbbfb5b58aaba9f9265cb13b9fb4a914bdcf37.tar.gz
5647 - experimental support for swapping OS
Diffstat (limited to 'build')
-rwxr-xr-xbuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/build b/build
index aaa236de..483ac49c 100755
--- a/build
+++ b/build
@@ -119,7 +119,7 @@ then
   for n in `seq 1 12`
   do
     older_than examples/ex$n examples/ex$n.subx && {
-      ./subx_bin translate examples/ex$n.subx -o examples/ex$n
+      ./subx_bin translate 049init.linux examples/ex$n.subx -o examples/ex$n
     }
   done
 
@@ -127,7 +127,7 @@ then
   for app in factorial crenshaw2-1 crenshaw2-1b handle
   do
     older_than apps/$app apps/$app.subx [0-9]*.subx && {
-      ./subx_bin translate [0-9]*.subx apps/$app.subx -o apps/$app
+      ./subx_bin translate 049init.linux [0-9]*.subx apps/$app.subx -o apps/$app
     }
   done
 
@@ -135,7 +135,7 @@ then
   for phase in hex survey pack assort dquotes tests
   do
     older_than apps/$phase apps/$phase.subx apps/subx-common.subx [0-9]*.subx && {
-      ./subx_bin translate [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase
+      ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase
     }
   done
 
@@ -143,7 +143,7 @@ then
   for phase in sigils
   do
     older_than apps/$phase apps/$phase.subx apps/subx-common.subx [0-9]*.subx && {
-      ./subx_bin translate [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase
+      ./subx_bin translate 049init.linux [0-9]*.subx apps/subx-common.subx apps/$phase.subx -o apps/$phase
     }
   done