Update temp boot image paths
This commit is contained in:
parent
5ced8d91f6
commit
c14c723859
|
@ -1,3 +1 @@
|
||||||
/build-*/
|
/build-*/
|
||||||
/scheme-core/flisp.boot.bak
|
|
||||||
/scheme-core/flisp.boot.new
|
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue