Skip to content

Commit

Permalink
Makefile: move SRC_CATALOG definition to ealier
Browse files Browse the repository at this point in the history
Accommodate nmake.exe, which needs the definition before
the use in `win32-in-place`.
  • Loading branch information
mflatt committed Jan 9, 2016
1 parent 7b4c91e commit dafb6d7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ WIN32_RUN_RACO = $(WIN32_RUN_RACKET) -N raco -l- raco

DEFAULT_SRC_CATALOG = https://pkgs.racket-lang.org

# Belongs in the "Configuration options" section, but here
# to accomodate nmake:
SRC_CATALOG = $(DEFAULT_SRC_CATALOG)

CPUS =

in-place:
Expand Down Expand Up @@ -194,8 +198,8 @@ racket/src/build/cross/Makefile: racket/src/configure racket/src/Makefile.in
# end in "_q" or "_qq", don't use any quote marks on the right-hand
# side of its definition.

# Catalog for package sources:
SRC_CATALOG = $(DEFAULT_SRC_CATALOG)
# Catalog for package sources (defined above):
# SRC_CATALOG = $(DEFAULT_SRC_CATALOG)

# A URL embedded in documentation for remote searches, where a Racket
# version and search key are added as query fields to the URL, and ""
Expand Down

0 comments on commit dafb6d7

Please sign in to comment.