diff options
author | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2007-06-29 01:54:56 +0000 |
---|---|---|
committer | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2007-06-29 01:54:56 +0000 |
commit | aa2ce971940119b46a7915e88402ae6d3a615ba4 (patch) | |
tree | a825721d6f11f66ae83961a1c806dfed57d48b9a /compiler/main/PackageConfig.hs | |
parent | 1143c0e63ab9925697dcd553bbdb65aa8d51fdb5 (diff) | |
download | haskell-aa2ce971940119b46a7915e88402ae6d3a615ba4.tar.gz |
Make package ndp wired-in
Diffstat (limited to 'compiler/main/PackageConfig.hs')
-rw-r--r-- | compiler/main/PackageConfig.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/main/PackageConfig.hs b/compiler/main/PackageConfig.hs index 5193113717..b16bd5d77f 100644 --- a/compiler/main/PackageConfig.hs +++ b/compiler/main/PackageConfig.hs @@ -20,6 +20,7 @@ module PackageConfig ( rtsPackageId, haskell98PackageId, thPackageId, + ndpPackageId, mainPackageId ) where @@ -105,6 +106,7 @@ basePackageId = fsToPackageId FSLIT("base") rtsPackageId = fsToPackageId FSLIT("rts") haskell98PackageId = fsToPackageId FSLIT("haskell98") thPackageId = fsToPackageId FSLIT("template-haskell") +ndpPackageId = fsToPackageId FSLIT("ndp") -- This is the package Id for the program. It is the default package -- Id if you don't specify a package name. We don't add this prefix |