diff options
author | Fabian Groffen <grobian@gentoo.org> | 2009-05-28 17:05:42 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2009-05-28 17:05:42 +0000 |
commit | 626fcf5e134b541a14886d1bbce51e68c5e39dc2 (patch) | |
tree | 2ba6155cd4dc4180d36f54cbe634f248dc7870b5 /app-misc | |
parent | alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #268539 (diff) | |
download | gentoo-2-626fcf5e134b541a14886d1bbce51e68c5e39dc2.tar.gz gentoo-2-626fcf5e134b541a14886d1bbce51e68c5e39dc2.tar.bz2 gentoo-2-626fcf5e134b541a14886d1bbce51e68c5e39dc2.zip |
iconv -o is not documented on Linux, and it for sure doesn't work with libiconv. Backport from Prefix
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/mc/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/mc/mc-4.6.2_pre1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-misc/mc/ChangeLog b/app-misc/mc/ChangeLog index 94020829f364..ffcf2246b811 100644 --- a/app-misc/mc/ChangeLog +++ b/app-misc/mc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/mc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/ChangeLog,v 1.146 2009/05/24 21:59:33 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/ChangeLog,v 1.147 2009/05/28 17:05:42 grobian Exp $ + + 28 May 2009; Fabian Groffen <grobian@gentoo.org> mc-4.6.2_pre1.ebuild: + iconv -o is not documented on Linux, and it for sure doesn't work with + libiconv. Backport from Prefix 24 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> mc-4.6.2_pre1.ebuild: diff --git a/app-misc/mc/mc-4.6.2_pre1.ebuild b/app-misc/mc/mc-4.6.2_pre1.ebuild index b82017822d52..63100aca0532 100644 --- a/app-misc/mc/mc-4.6.2_pre1.ebuild +++ b/app-misc/mc/mc-4.6.2_pre1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.2_pre1.ebuild,v 1.8 2009/05/24 21:59:33 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.2_pre1.ebuild,v 1.9 2009/05/28 17:05:42 grobian Exp $ EAPI=1 @@ -69,7 +69,7 @@ src_unpack() { for file in "doc/${lingua}/xnc.hlp" "lib/mc.hint.${lingua}" "lib/mc.menu.${lingua}"; do if [[ -f "${file}" ]]; then mv "${file}" "${file}.${old_encoding}" - iconv -f ${old_encoding} -t UTF-8 -o "${file}" "${file}.${old_encoding}" || die "iconv ${file} failed" + iconv -f ${old_encoding} -t UTF-8 "${file}.${old_encoding}" > "${file}" || die "iconv ${file} failed" fi done done |