diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-07-30 21:18:05 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2011-07-30 21:18:05 +0000 |
commit | b36d338f38bdf4f719c25ec87429bc262812cc4d (patch) | |
tree | 7cfbf85048c2c6b390782662d7e118c565b70c0f /app-i18n | |
parent | Drop non-functional openal support, bug #377005. (diff) | |
download | gentoo-2-b36d338f38bdf4f719c25ec87429bc262812cc4d.tar.gz gentoo-2-b36d338f38bdf4f719c25ec87429bc262812cc4d.tar.bz2 gentoo-2-b36d338f38bdf4f719c25ec87429bc262812cc4d.zip |
Modify sed expression to remove trailing slash on last line, this was causing automake error.
(Portage version: 2.1.10.9/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/man-pages-pl/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/app-i18n/man-pages-pl/ChangeLog b/app-i18n/man-pages-pl/ChangeLog index ae7fecbde4ce..470885c17469 100644 --- a/app-i18n/man-pages-pl/ChangeLog +++ b/app-i18n/man-pages-pl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/man-pages-pl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.14 2011/07/30 17:08:55 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/ChangeLog,v 1.15 2011/07/30 21:18:05 nelchael Exp $ + + 30 Jul 2011; Krzysztof Pawlik <nelchael@gentoo.org> + man-pages-pl-20070628-r1.ebuild: + Modify sed expression to remove trailing slash on last line, this was causing + automake error. *man-pages-pl-20070628-r1 (30 Jul 2011) diff --git a/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild b/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild index 9ca74d128ec9..1712c41162a6 100644 --- a/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild +++ b/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild,v 1.1 2011/07/30 17:08:55 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-pl/man-pages-pl-20070628-r1.ebuild,v 1.2 2011/07/30 21:18:05 nelchael Exp $ inherit autotools @@ -33,7 +33,7 @@ src_unpack() { # bug #375623: mans="${mans} manpath.5 catman.8 mandb.8 zsoelim.1 manpath.1" for page in ${mans} ; do - sed -i -e "/\\t${page}/ d" man${page: -1}/Makefile.am + sed -i -e "/\\t${page}/d; \$s,\\\,,;" man${page: -1}/Makefile.am done eautoreconf || die |