Fix header level for foreign-libraries section
[cabal.git] / Cabal / Setup.hs
blob42784ab13d2c5f136b6b8a03643229b576cb401e
1 import Distribution.Simple
2 main :: IO ()
3 main = defaultMain
5 -- Although this looks like the Simple build type, it is in fact vital that
6 -- we use this Setup.hs because it'll get compiled against the local copy
7 -- of the Cabal lib, thus enabling Cabal to bootstrap itself without relying
8 -- on any previous installation. This also means we can use any new features
9 -- immediately because we never have to worry about building Cabal with an
10 -- older version of itself.
12 -- NOTE 25/01/2015: Bootstrapping is disabled for now, see
13 -- https://github.com/haskell/cabal/issues/3003.