From: fuzzyray Date: Wed, 14 Mar 2007 03:01:04 +0000 (-0000) Subject: Fix bug with --package-names option not rebuilding packages (Bug #169761) X-Git-Tag: gentoolkit-0.2.4.3~157 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=22abb2a3c0108770f12cb83d4625a8a5858a20c7;p=gentoolkit.git Fix bug with --package-names option not rebuilding packages (Bug #169761) svn path=/; revision=356 --- diff --git a/trunk/ChangeLog b/trunk/ChangeLog index d774919..fa2f293 100644 --- a/trunk/ChangeLog +++ b/trunk/ChangeLog @@ -1,3 +1,7 @@ +2007-03-13 Paul Varner + * revdep-rebuild: Fix bug with --package-names option not rebuilding + packages (Bug #169761) + 2007-03-10 Paul Varner * equery: Add --depth option to equery depgraph to limit the depth of the dependency graph. (Bug #115807) diff --git a/trunk/src/revdep-rebuild/revdep-rebuild b/trunk/src/revdep-rebuild/revdep-rebuild index f404051..c58ac04 100755 --- a/trunk/src/revdep-rebuild/revdep-rebuild +++ b/trunk/src/revdep-rebuild/revdep-rebuild @@ -634,7 +634,7 @@ else done ln -f $LLIST.4_ebuilds $LLIST.5_order else - (EMERGE_DEFAULT_OPTS="" emerge --nospinner --pretend --oneshot --deep --quiet $RAW_REBUILD_LIST ; echo $? >$LLIST.5b_status ) | sed -n 's/ //g;s/^.*\]//p' | grep "$REBUILD_GREP" >$LLIST.5_order + (EMERGE_DEFAULT_OPTS="" emerge --nospinner --pretend --oneshot --deep --quiet $RAW_REBUILD_LIST ; echo $? >$LLIST.5b_status ) | sed -n 's/ *$//;s/^\[.*\] //p' | awk '{print $1}' | grep "$REBUILD_GREP" >$LLIST.5_order if [ $(cat $LLIST.5b_status) -gt 0 ] ; then echo "" echo -e "${RD}Warning: Failed to resolve package order."