diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-11-02 15:47:41 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-11-02 15:47:41 +0000 |
commit | 323d2ee0e5bc14b25effd518a8948b5392681331 (patch) | |
tree | 05271cf222a1c06a33379a38e06cdadb0474b9eb /dev-libs/libxml | |
parent | Just an update (diff) | |
download | gentoo-2-323d2ee0e5bc14b25effd518a8948b5392681331.tar.gz gentoo-2-323d2ee0e5bc14b25effd518a8948b5392681331.tar.bz2 gentoo-2-323d2ee0e5bc14b25effd518a8948b5392681331.zip |
A small symlink fix libxml installs a broken symlink which causes other
apps to include libxml2 headers
Diffstat (limited to 'dev-libs/libxml')
-rw-r--r-- | dev-libs/libxml/libxml-1.8.16.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev-libs/libxml/libxml-1.8.16.ebuild b/dev-libs/libxml/libxml-1.8.16.ebuild index 825dcf243e27..adfa7987383a 100644 --- a/dev-libs/libxml/libxml-1.8.16.ebuild +++ b/dev-libs/libxml/libxml-1.8.16.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml/libxml-1.8.16.ebuild,v 1.1 2001/10/08 08:26:38 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml/libxml-1.8.16.ebuild,v 1.2 2001/11/02 15:47:41 achim Exp $ S=${WORKDIR}/${P} DESCRIPTION="libxml" @@ -29,7 +29,9 @@ src_install() { sysconfdir=${D}/etc \ localstatedir=${D}/var/lib \ install || die - + # This link must be fixed + rm ${D}/usr/include/gnome-xml/libxml + dosym /usr/include/gnome-xml /usr/include/gnome-xml/libxml dodoc AUTHORS COPYING* ChangeLog NEWS README } |