diff options
author | Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2010-08-07 20:06:30 +0200 |
---|---|---|
committer | Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2010-08-07 20:06:30 +0200 |
commit | ae7b30668a4478c8ac63684cab7c307200a33626 (patch) | |
tree | 97c7b8523d4e8c72265f33773ba1fca79851d443 | |
parent | Simplify reverse-deps fetching. (diff) | |
download | flameeyes-tinderbox-ae7b30668a4478c8ac63684cab7c307200a33626.tar.gz flameeyes-tinderbox-ae7b30668a4478c8ac63684cab7c307200a33626.tar.bz2 flameeyes-tinderbox-ae7b30668a4478c8ac63684cab7c307200a33626.zip |
Skip over new-style virtuals in the list.
-rwxr-xr-x | tinderbox-restart.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tinderbox-restart.sh b/tinderbox-restart.sh index 56b9d57..44a33bf 100755 --- a/tinderbox-restart.sh +++ b/tinderbox-restart.sh @@ -81,8 +81,9 @@ emerge -u1 glibc bti screen gentoolkit java-dep-check portage-utils reset_emergelog # Generate a new complete list, this will also produce the list of new -# dependencies to satisfy. -./tinderbox.py > /var/cache/tinderbox/list-complete +# dependencies to satisfy. Ignore new-style virtuals, leave them to be +# merged out of dependencies. +./tinderbox.py | egrep -v '^virtual/' > /var/cache/tinderbox/list-complete # Launch the fetch operation in background, saving the log (of both # good results and failures). |