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 | 796a5723acc0c71edc8a3957a51bba70626f9549 (patch) | |
tree | 0230675558eab20c4f4c09a591b90379871eda21 | |
parent | Just an update (diff) | |
download | historical-796a5723acc0c71edc8a3957a51bba70626f9549.tar.gz historical-796a5723acc0c71edc8a3957a51bba70626f9549.tar.bz2 historical-796a5723acc0c71edc8a3957a51bba70626f9549.zip |
A small symlink fix libxml installs a broken symlink which causes other
apps to include libxml2 headers
-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 } |