From ea17b5656fadac95bc6e44c587783f96548ab467 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 14 Jan 2014 10:48:27 +0100 Subject: [PATCH] chroot-texinfo: remove charset.alias if exists. --- srcpkgs/chroot-texinfo/template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/chroot-texinfo/template b/srcpkgs/chroot-texinfo/template index 3f9ae7dd05c..657f6801887 100644 --- a/srcpkgs/chroot-texinfo/template +++ b/srcpkgs/chroot-texinfo/template @@ -1,7 +1,7 @@ # Template file for 'chroot-texinfo' pkgname=chroot-texinfo version=4.13a -revision=3 +revision=4 wrksrc="texinfo-4.13" bootstrap=yes hostmakedepends="ncurses-devel" @@ -35,4 +35,7 @@ do_install() { rm -f ${DESTDIR}/usr/bin/info rm -f ${DESTDIR}/usr/bin/infokey rm -rf ${DESTDIR}/usr/share + if [ -f ${DESTDIR}/usr/lib/charset.alias ]; then + rm -f ${DESTDIR}/usr/lib/charset.alias + fi }