diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-04-14 22:09:12 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-04-14 22:09:12 -0700 |
commit | e086260086fdbf25ebd2de0adaf66299003ad646 (patch) | |
tree | 5f94a50073195e7237062b425bb0c65deb9e8bca /genbootstrap.sh | |
parent | b0906887bc2c638098970496d65c673b491ad38e (diff) | |
download | mc-e086260086fdbf25ebd2de0adaf66299003ad646.tar.gz |
Make all bootstrapped paths relative.
Diffstat (limited to 'genbootstrap.sh')
-rwxr-xr-x | genbootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/genbootstrap.sh b/genbootstrap.sh index 9fbd086..bde4bc3 100755 --- a/genbootstrap.sh +++ b/genbootstrap.sh @@ -9,7 +9,7 @@ mbld clean bootscript=bootstrap+`uname -s`-`uname -m` echo '#!/bin/sh' > bootstrap.sh echo 'pwd=`pwd`' >> bootstrap.sh -mbld | \ +mbld -R. | \ sed "s:Entering directory '\\(.*\\)':\tcd \$pwd/\\1:g" | \ sed "s:Leaving directory.*:\tcd \$pwd:g" | \ sed "s:\\([a-zA-Z0-9_-]*\\)+.*:\`\$pwd/sysselect.sh \1\`:" | \ |