# HG changeset patch # User Pascal Bellard # Date 1279643127 -7200 # Node ID df5d56b9c4ae449267e8009f1fbed531e263822f # Parent aafdac59e1234345f95a52c0c4e47e88fc61cc6c busybox: fix upgrade diff -r aafdac59e123 -r df5d56b9c4ae busybox-pam/receipt --- a/busybox-pam/receipt Tue Jul 20 19:06:03 2010 +0200 +++ b/busybox-pam/receipt Tue Jul 20 18:25:27 2010 +0200 @@ -93,6 +93,11 @@ answer="" while read i ; do [ -f $1$i ] || continue + case "$i" in + /bin/busybox) continue ;; + *bin/*) ;; + *) continue ;; + esac if [ -z "$answer" ]; then echo -n "Keep installed GNU utilities ? " read answer diff -r aafdac59e123 -r df5d56b9c4ae busybox/receipt --- a/busybox/receipt Tue Jul 20 19:06:03 2010 +0200 +++ b/busybox/receipt Tue Jul 20 18:25:27 2010 +0200 @@ -86,6 +86,11 @@ answer="" while read i ; do [ -f $1$i ] || continue + case "$i" in + /bin/busybox) continue ;; + *bin/*) ;; + *) continue ;; + esac if [ -z "$answer" ]; then echo -n "Keep installed GNU utilities ? " read -t 30 answer # by default: keep