diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-09-25 06:20:45 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-09-25 06:20:45 +0000 |
commit | cd0ddd6118eb9d9fdd75d96598d4919a2f939f47 (patch) | |
tree | 9c2e3f6e839eed1b4e62856706c8d4a05f07ef5f /sci-misc | |
parent | exchanging make with emake -j1, as this is equivalent. Thanks to vapier for ... (diff) | |
download | gentoo-2-cd0ddd6118eb9d9fdd75d96598d4919a2f939f47.tar.gz gentoo-2-cd0ddd6118eb9d9fdd75d96598d4919a2f939f47.tar.bz2 gentoo-2-cd0ddd6118eb9d9fdd75d96598d4919a2f939f47.zip |
correct the sed macro so it actually replaces the correct line
(Portage version: 2.1.3.9)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/gri/ChangeLog | 5 | ||||
-rw-r--r-- | sci-misc/gri/gri-2.12.16.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-misc/gri/ChangeLog b/sci-misc/gri/ChangeLog index f393e35967f6..f0fb3c82df8f 100644 --- a/sci-misc/gri/ChangeLog +++ b/sci-misc/gri/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/gri # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/gri/ChangeLog,v 1.13 2007/09/24 20:34:45 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/gri/ChangeLog,v 1.14 2007/09/25 06:20:45 opfer Exp $ + + 25 Sep 2007; Christian Faulhammer <opfer@gentoo.org> gri-2.12.16.ebuild: + correct the sed macro so it actually replaces the correct line 24 Sep 2007; Christian Faulhammer <opfer@gentoo.org> gri-2.12.14.ebuild: stable x86, bug 193684 diff --git a/sci-misc/gri/gri-2.12.16.ebuild b/sci-misc/gri/gri-2.12.16.ebuild index 3557fe882708..11a1144f2650 100644 --- a/sci-misc/gri/gri-2.12.16.ebuild +++ b/sci-misc/gri/gri-2.12.16.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/sci-misc/gri/gri-2.12.16.ebuild,v 1.1 2007/09/24 20:27:42 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/gri/gri-2.12.16.ebuild,v 1.2 2007/09/25 06:20:45 opfer Exp $ inherit eutils elisp-common @@ -33,7 +33,7 @@ src_compile() { src_install() { # Replace PREFIX now and correct paths in the startup message. - sed -e s,PREFIX/share/doc/gri/,/usr/share/doc/${P}/, -i "${S}/src/startup.msg" + sed -e s,PREFIX/share/gri/doc/,/usr/share/doc/${P}/, -i "${S}/src/startup.msg" einstall || die "einstall failed." |