diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-06 00:03:56 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-06 00:03:56 +0000 |
commit | 390905da767d8649a89b4eb3e6dde05c8364d67d (patch) | |
tree | 84799c0c3bbef70000dfbc496273324d497abc07 /media-libs | |
parent | old (diff) | |
download | gentoo-2-390905da767d8649a89b4eb3e6dde05c8364d67d.tar.gz gentoo-2-390905da767d8649a89b4eb3e6dde05c8364d67d.tar.bz2 gentoo-2-390905da767d8649a89b4eb3e6dde05c8364d67d.zip |
Remove unused libjpeg.la because jpeg is only linking to libc.
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/jpeg/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/jpeg/jpeg-8b.ebuild | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/media-libs/jpeg/ChangeLog b/media-libs/jpeg/ChangeLog index d8d764777e24..e8c5c6bfaec7 100644 --- a/media-libs/jpeg/ChangeLog +++ b/media-libs/jpeg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/jpeg -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.117 2010/08/29 18:14:18 armin76 Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.118 2011/01/06 00:03:56 ssuominen Exp $ + + 06 Jan 2011; Samuli Suominen <ssuominen@gentoo.org> jpeg-8b.ebuild: + Remove unused libjpeg.la because jpeg is only linking to libc. 29 Aug 2010; Raúl Porcel <armin76@gentoo.org> jpeg-8b.ebuild: alpha/ia64/m68k/s390/sh/sparc stable wrt #325825 diff --git a/media-libs/jpeg/jpeg-8b.ebuild b/media-libs/jpeg/jpeg-8b.ebuild index 5ea9bff9f83b..92923fc855f8 100644 --- a/media-libs/jpeg/jpeg-8b.ebuild +++ b/media-libs/jpeg/jpeg-8b.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.9 2010/08/29 18:14:18 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.10 2011/01/06 00:03:56 ssuominen Exp $ EAPI="3" @@ -45,7 +45,6 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die dodoc change.log example.c README *.txt - # Do this after -Wl,--as-needed has been default for long enough, - # to minimize the impact for users. Uncomment 01-01-2011. - # find "${ED}" -name '*.la' -exec rm -f '{}' + + + find "${ED}" -name '*.la' -exec rm -f '{}' + } |