Update temp boot image paths

This commit is contained in:
Lassi Kortela 2019-08-13 23:20:47 +03:00
parent 5ced8d91f6
commit c14c723859
2 changed files with 6 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,3 +1 @@
/build-*/ /build-*/
/scheme-core/flisp.boot.bak
/scheme-core/flisp.boot.new

View File

@ -96,8 +96,9 @@ cd ../scheme-core
echo "Entering directory '$PWD'" echo "Entering directory '$PWD'"
echo "Creating stage 0 boot file..." echo "Creating stage 0 boot file..."
set -x set -x
../"$builddir"/upscheme mkboot0.scm system.scm compiler.scm >boot_image.h.new ../"$builddir"/upscheme mkboot0.scm system.scm compiler.scm \
mv boot_image.h.new ../scheme-boot/boot_image.h >../scheme-boot/boot_image.h.new
mv ../scheme-boot/boot_image.h.new ../scheme-boot/boot_image.h
{ set +x; } 2>/dev/null { set +x; } 2>/dev/null
cd ../"$builddir" cd ../"$builddir"
@ -111,8 +112,9 @@ cd ../scheme-core
echo "Entering directory '$PWD'" echo "Entering directory '$PWD'"
echo "Creating stage 1 boot file..." echo "Creating stage 1 boot file..."
set -x set -x
../"$builddir"/upscheme mkboot1.scm >boot_image.h.new ../"$builddir"/upscheme mkboot1.scm \
mv boot_image.h.new ../scheme-boot/boot_image.h >../scheme-boot/boot_image.h.new
mv ../scheme-boot/boot_image.h.new ../scheme-boot/boot_image.h
{ set +x; } 2>/dev/null { set +x; } 2>/dev/null
cd ../"$builddir" cd ../"$builddir"