summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Gohla <b.gohla@gmx.de>2019-09-21 13:13:30 (GMT)
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-09-23 21:53:23 (GMT)
commit2778929466dafefd55a0673625f4520a234df986 (patch)
treec66d4e7876ee717cb57a9d9c81489de697fab691
parentb650c2b6dc9b43c7adc116236fd6588303df807b (diff)
downloadghc-2778929466dafefd55a0673625f4520a234df986.zip
ghc-2778929466dafefd55a0673625f4520a234df986.tar.gz
ghc-2778929466dafefd55a0673625f4520a234df986.tar.bz2
sort-paragraphs in runBuilderWith
-rw-r--r--hadrian/src/Builder.hs24
1 files changed, 13 insertions, 11 deletions
diff --git a/hadrian/src/Builder.hs b/hadrian/src/Builder.hs
index 1a4b9c9..587c62f 100644
--- a/hadrian/src/Builder.hs
+++ b/hadrian/src/Builder.hs
@@ -242,6 +242,7 @@ instance H.Builder Builder where
Ar Unpack _ -> cmd echo [Cwd output] [path] buildArgs
Autoreconf dir -> cmd echo [Cwd dir] ["sh", path] buildArgs
+
Configure dir -> do
-- Inject /bin/bash into `libtool`, instead of /bin/sh,
-- otherwise Windows breaks. TODO: Figure out why.
@@ -249,7 +250,6 @@ instance H.Builder Builder where
let env = AddEnv "CONFIG_SHELL" bash
cmd echo env [Cwd dir] ["sh", path] buildOptions buildArgs
- HsCpp -> captureStdout
GenApply -> captureStdout
GenPrimopCode -> do
@@ -257,16 +257,6 @@ instance H.Builder Builder where
Stdout stdout <- cmd (Stdin stdin) [path] buildArgs
writeFileChanged output stdout
- Make dir -> cmd echo path ["-C", dir] buildArgs
-
- Xelatex -> do
- unit $ cmd [Cwd output] [path] buildArgs
- unit $ cmd [Cwd output] [path] buildArgs
- unit $ cmd [Cwd output] [path] buildArgs
- unit $ cmd [Cwd output] ["makeindex"] (input -<.> "idx")
- unit $ cmd [Cwd output] [path] buildArgs
- unit $ cmd [Cwd output] [path] buildArgs
-
GhcPkg Copy _ -> do
Stdout pkgDesc <- cmd [path]
[ "--expand-pkgroot"
@@ -280,9 +270,21 @@ instance H.Builder Builder where
Exit _ <- cmd echo [path] (buildArgs ++ [input])
return ()
+ HsCpp -> captureStdout
+
+ Make dir -> cmd echo path ["-C", dir] buildArgs
+
Makeinfo -> do
cmd echo [path] "--no-split" [ "-o", output] [input]
+ Xelatex -> do
+ unit $ cmd [Cwd output] [path] buildArgs
+ unit $ cmd [Cwd output] [path] buildArgs
+ unit $ cmd [Cwd output] [path] buildArgs
+ unit $ cmd [Cwd output] ["makeindex"] (input -<.> "idx")
+ unit $ cmd [Cwd output] [path] buildArgs
+ unit $ cmd [Cwd output] [path] buildArgs
+
_ -> cmd echo [path] buildArgs
-- TODO: Some builders are required only on certain platforms. For example,