diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-06-27 14:44:51 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-06-27 14:44:51 -0700 |
commit | aa419bde150ce4827ec127288876ce2d0a191629 (patch) | |
tree | 5dd4313c20dd4b8add97a165d4589fcb2eb8a605 /mkfile | |
parent | e9620d67cdc7cb49e70b02eae9753ff5bf262dc1 (diff) | |
download | mc-aa419bde150ce4827ec127288876ce2d0a191629.tar.gz |
Fix 'mk check' on 9front.
We were cding before running mbldwrap.sh, which clearly
lead to mbldwrap.sh not being found. Fixed.
Diffstat (limited to 'mkfile')
-rw-r--r-- | mkfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -48,9 +48,11 @@ uninstall:V: $SUB config.h ape/psh mbldwrap.sh uninstall check:V: all - cd test - mk check - mbld test + @{ + cd test + mk check + } + ape/psh mbldwrap.sh test config.h: echo '#define Instroot "/amd64"' > config.h |