Update temp boot image paths
This commit is contained in:
parent
5ced8d91f6
commit
c14c723859
|
@ -1,3 +1 @@
|
|||
/build-*/
|
||||
/scheme-core/flisp.boot.bak
|
||||
/scheme-core/flisp.boot.new
|
||||
|
|
|
@ -96,8 +96,9 @@ cd ../scheme-core
|
|||
echo "Entering directory '$PWD'"
|
||||
echo "Creating stage 0 boot file..."
|
||||
set -x
|
||||
../"$builddir"/upscheme mkboot0.scm system.scm compiler.scm >boot_image.h.new
|
||||
mv boot_image.h.new ../scheme-boot/boot_image.h
|
||||
../"$builddir"/upscheme mkboot0.scm system.scm compiler.scm \
|
||||
>../scheme-boot/boot_image.h.new
|
||||
mv ../scheme-boot/boot_image.h.new ../scheme-boot/boot_image.h
|
||||
|
||||
{ set +x; } 2>/dev/null
|
||||
cd ../"$builddir"
|
||||
|
@ -111,8 +112,9 @@ cd ../scheme-core
|
|||
echo "Entering directory '$PWD'"
|
||||
echo "Creating stage 1 boot file..."
|
||||
set -x
|
||||
../"$builddir"/upscheme mkboot1.scm >boot_image.h.new
|
||||
mv boot_image.h.new ../scheme-boot/boot_image.h
|
||||
../"$builddir"/upscheme mkboot1.scm \
|
||||
>../scheme-boot/boot_image.h.new
|
||||
mv ../scheme-boot/boot_image.h.new ../scheme-boot/boot_image.h
|
||||
|
||||
{ set +x; } 2>/dev/null
|
||||
cd ../"$builddir"
|
||||
|
|
Loading…
Reference in New Issue