summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Coutts <dcoutts@gentoo.org>2007-12-13 18:05:21 +0000
committerDuncan Coutts <dcoutts@gentoo.org>2007-12-13 18:05:21 +0000
commit74d8f0de0f2bbe57589e6150432ea87304e0a072 (patch)
tree97b51a05d8a8b4421d8c5d3fbfb944efe9e2c160 /dev-haskell/hdoc
parentFixes for compatability with cabal-1.2 and ghc-6.8. (diff)
downloadhistorical-74d8f0de0f2bbe57589e6150432ea87304e0a072.tar.gz
historical-74d8f0de0f2bbe57589e6150432ea87304e0a072.tar.bz2
historical-74d8f0de0f2bbe57589e6150432ea87304e0a072.zip
Fix quoting in ebuild.
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'dev-haskell/hdoc')
-rw-r--r--dev-haskell/hdoc/ChangeLog5
-rw-r--r--dev-haskell/hdoc/hdoc-0.8.3.ebuild4
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-haskell/hdoc/ChangeLog b/dev-haskell/hdoc/ChangeLog
index 434cbce125f0..a5c67a763a07 100644
--- a/dev-haskell/hdoc/ChangeLog
+++ b/dev-haskell/hdoc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-haskell/hdoc
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.16 2007/10/31 13:02:03 dcoutts Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.17 2007/12/13 18:03:17 dcoutts Exp $
+
+ 13 Dec 2007; Duncan Coutts <dcoutts@gentoo.org> hdoc-0.8.3.ebuild:
+ Fix quoting in ebuild.
31 Oct 2007; Duncan Coutts <dcoutts@gentoo.org> hdoc-0.8.3.ebuild:
Drop virtual/ghc in favour of dev-lang/ghc
diff --git a/dev-haskell/hdoc/hdoc-0.8.3.ebuild b/dev-haskell/hdoc/hdoc-0.8.3.ebuild
index fe7b8c62b6fa..24ab2e72f78e 100644
--- a/dev-haskell/hdoc/hdoc-0.8.3.ebuild
+++ b/dev-haskell/hdoc/hdoc-0.8.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.3.ebuild,v 1.11 2007/10/31 13:02:03 dcoutts Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.3.ebuild,v 1.12 2007/12/13 18:03:17 dcoutts Exp $
DESCRIPTION="A documentation generator for Haskell"
HOMEPAGE="http://www.fmi.uni-passau.de/~groessli/hdoc/"
@@ -21,6 +21,6 @@ src_compile() {
src_install () {
# DESTDIR does not work, but only bindir is used ...
- make bindir=${D}/usr/bin install || die "installation failed"
+ make bindir="${D}/usr/bin" install || die "installation failed"
dodoc docs/hdoc.pdf
}