Skip to content

Commit d71f644

Browse files
jryansmflatt
authored andcommitted
Fix bootstrapping via Racket from top-level makefile
The build docs mention `RACKET_FOR_BOOTFILES` as a top-level makefile argument for bootstrapping via existing Racket, but this seems to have been renamed to `BOOTFILE_RACKET` somewhere along the way. This fixes the build docs and top-level makefile to follow along.
1 parent 89a67c5 commit d71f644

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ BUILD_VARS = MAKE=$(MAKE) \
176176
CS_CROSS_SUFFIX="$(CS_CROSS_SUFFIX)" \
177177
RACKET="$(RACKET)" \
178178
PLAIN_RACKET="$(PLAIN_RACKET)" \
179-
RACKET_FOR_BOOTFILES="$(RACKET_FOR_BOOTFILES)" \
179+
BOOTFILE_RACKET="$(BOOTFILE_RACKET)" \
180180
CS_HOST_WORKAREA_PREFIX="$(CS_HOST_WORKAREA_PREFIX)" \
181181
PB_BRANCH="$(PB_BRANCH)" \
182182
PB_REPO="$(PB_REPO)" \

build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ downloaded from a separate Git repository by `make`. If you have Racket
246246
v7.1 or later, then you can choose instead to bootstrap using that
247247
Racket implementation with
248248

249-
  `make cs RACKET_FOR_BOOTFILES=racket`
249+
  `make cs BOOTFILE_RACKET=racket`
250250

251251
The `make bc` target (or `make bc-as-is` for a rebuild) builds an older
252252
variant of Racket, called Racket BC, which does not use Chez Scheme. By

pkgs/racket-build-guide/build.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ downloaded from a separate Git repository by @exec{make}. If you have
222222
Racket v7.1 or later, then you can choose instead to bootstrap using
223223
that Racket implementation with
224224

225-
@commandline{make cs RACKET_FOR_BOOTFILES=racket}
225+
@commandline{make cs BOOTFILE_RACKET=racket}
226226

227227
The @exec{make bc} target (or @exec{make bc-as-is} for a rebuild) builds an older
228228
variant of Racket, called Racket BC, which does not use Chez Scheme.

0 commit comments

Comments
 (0)