blob: 905570052a87154658a71512365486a4e6183444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Reported by Diego: https://bugs.gentoo.org/show_bug.cgi?id=251888
dev-haskell/hdoc-0.8.3:20081213-031033.log: * QA Notice: Pre-stripped files
found:
dev-haskell/hdoc-0.8.3:20081213-031033.log: *
/var/tmp/portage/dev-haskell/hdoc-0.8.3/image/usr/bin/hdoc
Patch removed direct strip calls from Evil Makefile.
diff --git a/Makefile.in b/Makefile.in
index 436ad12..1cc3f71 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -42,20 +42,17 @@ hdoc: @BUILD@
.PHONY: ghc5
ghc5: gen
$(GHC) -o $(HDOC) $(GHC_OPTS) --make Main
- $(STRIP) $(HDOC)
.PHONY: hmake-ghc
hmake-ghc: gen
$(HMAKE) -HC=$(GHC) $(GHC_OPTS) Main
mv Main $(HDOC)
- $(STRIP) $(HDOC)
# NHC98 can now compile HDoc just fine :-)
.PHONY: hmake-nhc98
hmake-nhc98: gen
$(HMAKE) -HC=$(NHC98) $(NHC98_OPTS) Main
mv Main $(HDOC)
- $(STRIP) $(HDOC)
Scanner.hs: Scanner.x
$(ALEX) $< $@
|