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: # Create packages and a catalog for all native libraries:
native-catalog: native-catalog:
$(RACKET) $(DISTBLD)/pack-native.rkt $(RACKET) $(DISTBLD)/pack-native.rkt native-pkgs
# Create a catalog for all packages in this directory: # Create a catalog for all packages in this directory:
local-source-catalog: local-source-catalog:

View File

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