diff options
author | P. J. McDermott <pj@pehjota.net> | 2016-02-23 22:35:13 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2016-02-24 00:38:16 (EST) |
commit | 8c6e5d210adca90450fe82c1fcb30075d555d976 (patch) | |
tree | 2199fcb3d5081e5bd08ab64afad918368f8eee67 | |
parent | 4dcd94de4bea9d81141ddbb646b650f7241e31c0 (diff) | |
download | eggshell-8c6e5d210adca90450fe82c1fcb30075d555d976.zip eggshell-8c6e5d210adca90450fe82c1fcb30075d555d976.tar.gz eggshell-8c6e5d210adca90450fe82c1fcb30075d555d976.tar.bz2 |
eshtrans/bootstrap.sh: Fix output and add times
-rw-r--r-- | eshtrans/bootstrap.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eshtrans/bootstrap.sh b/eshtrans/bootstrap.sh index 9d0b763..c1a7fe5 100644 --- a/eshtrans/bootstrap.sh +++ b/eshtrans/bootstrap.sh @@ -1,16 +1,16 @@ -printf 'Stage 1' +printf 'Stage 1\n' make clean -make -f Makefile.old +time -p make -f Makefile.old mv eshtrans.old eshtrans.stage1 -printf 'Stage 2' +printf 'Stage 2\n' make clean cp -p eshtrans.stage1 eshtrans -make +time -p make mv eshtrans eshtrans.stage2 -printf 'Stage 3' +printf 'Stage 3\n' make clean cp -p eshtrans.stage2 eshtrans -make +time -p make mv eshtrans eshtrans.stage3 |