Mercurial > hg > aboriginal
annotate build.sh @ 55:f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
./build.sh 2>&1 | tee out.txt
author | Rob Landley <rob@landley.net> |
---|---|
date | Wed, 20 Dec 2006 12:10:43 -0500 |
parents | |
children | 153ba1a0b427 |
rev | line source |
---|---|
55
f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
1 #!/bin/sh |
f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
2 |
f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
3 ./download.sh && |
f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
4 ./cross-compiler.sh $1 && |
f510ed16a6a0
Little wrapper script to run the stages in order. I generally run:
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
5 ./mini-native.sh $1 |