Re: [gentoo-portage-dev] [patch] dont run ldconfig unless libraries are actually installed

2006-01-17 Thread Zac Medico
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zac Medico wrote: Mike Frysinger wrote: makelinks is set to 1 by default when upgrading a package so that running ldconfig will update any shared lib links ... however, if the package doesnt install any libraries, then there's no point in

Re: [gentoo-portage-dev] [patch] dont run ldconfig unless libraries are actually installed

2006-01-16 Thread Mike Frysinger
On Monday 16 January 2006 19:52, Zac Medico wrote: Mike Frysinger wrote: - for x in specials[LDPATH]+['/usr/lib','/lib']: + skip_makelinks=1 + for x in portage_util.unique_array(specials[LDPATH]+['/usr/lib','/usr/lib64','/u sr/lib32','/lib','/lib64','/lib32']): + if

[gentoo-portage-dev] [patch] dont run ldconfig unless libraries are actually installed

2006-01-14 Thread Mike Frysinger
simple patch which gets rid of all the pointless calls to `ldconfig` when emerging packages that dont install libraries thoughts ? -mike Index: pym/portage.py === --- pym/portage.py (revision 2559) +++ pym/portage.py (working copy)

Re: [gentoo-portage-dev] [patch] dont run ldconfig unless libraries are actually installed

2006-01-14 Thread Mike Frysinger
On Sunday 15 January 2006 00:43, Mike Frysinger wrote: simple patch which gets rid of all the pointless calls to `ldconfig` when emerging packages that dont install libraries and revised -mike Index: pym/portage.py === ---