distro-build: fix reference to "native-pkgs"

This commit is contained in:
Matthew Flatt 2013-07-27 07:18:25 -06:00
parent 2ec49929a4
commit 3c36269d88
2 changed files with 6 additions and 6 deletions

View File

@ -268,7 +268,7 @@ complain-no-submodule:
# Create packages and a catalog for all native libraries:
native-catalog:
$(RACKET) $(DISTBLD)/pack-native.rkt
$(RACKET) $(DISTBLD)/pack-native.rkt native-pkgs
# Create a catalog for all packages in this directory:
local-source-catalog:

View File

@ -7,12 +7,12 @@
net/url
pkg/strip)
(command-line
(define src-dir
(command-line
#:args
()
(void))
(native-pkgs-dir)
native-pkgs-dir))
(define src-dir (build-path "build" "native-pkgs"))
(define dest-dir (build-path "build" "native" "pkgs"))
(define catalog-dir (build-path "build" "native" "catalog"))
(define local-catalog-dir (build-path "build" "local" "catalog"))