diff options
author | 2003-08-30 05:22:31 +0000 | |
---|---|---|
committer | 2003-08-30 05:22:31 +0000 | |
commit | f216d226da67c3b0121ac603d9d9c93a05c5a728 (patch) | |
tree | aa4e93e2f9c366be1a86a64a6512e7019876522c /media-libs/libexif/libexif-0.5.12.ebuild | |
parent | spelling fix (diff) | |
download | gentoo-2-f216d226da67c3b0121ac603d9d9c93a05c5a728.tar.gz gentoo-2-f216d226da67c3b0121ac603d9d9c93a05c5a728.tar.bz2 gentoo-2-f216d226da67c3b0121ac603d9d9c93a05c5a728.zip |
a blank /usr/share/locale directory was getting created for both nls and non-nls. removing it for non-nls
Diffstat (limited to 'media-libs/libexif/libexif-0.5.12.ebuild')
-rw-r--r-- | media-libs/libexif/libexif-0.5.12.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/media-libs/libexif/libexif-0.5.12.ebuild b/media-libs/libexif/libexif-0.5.12.ebuild index 09caa0bc20d9..8adefef4dd26 100644 --- a/media-libs/libexif/libexif-0.5.12.ebuild +++ b/media-libs/libexif/libexif-0.5.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.5.12.ebuild,v 1.1 2003/08/23 23:38:25 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.5.12.ebuild,v 1.2 2003/08/30 05:22:28 seemant Exp $ inherit flag-o-matic @@ -18,9 +18,7 @@ KEYWORDS="~x86 ~ppc ~sparc ~alpha" DEPEND="dev-util/pkgconfig" src_compile() { - local myconf - use nls || myconf="${myconf} --disable-nls" - econf ${myconf} + econf `use_enable nls` || die emake || die } @@ -32,4 +30,7 @@ src_install() { einstall || die dodoc ChangeLog README + + # installs a blank directory for whatever broken reason + use nls || rmdir ${D}/usr/share/locale } |