diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | pbuilder-updatebuildenv | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2005-06-04 Junichi Uekawa <dancer@debian.org> + * pbuilder-updatebuildenv: fix typo + * pbuilder.8: document --autocleanaptcache * pbuilder-updatebuildenv: diff --git a/pbuilder-updatebuildenv b/pbuilder-updatebuildenv index 112007e..bf89842 100755 --- a/pbuilder-updatebuildenv +++ b/pbuilder-updatebuildenv @@ -53,7 +53,7 @@ if [ "${AUTOCLEANAPTCACHE}" = "yes" -a -n "$APTCACHE" ]; then echo " -> Cleaning the cached apt archive" $CHROOTEXEC /usr/bin/apt-get autoclean || true find "$APTCACHE/" -name \*.deb -maxdepth 1 | \ - while rezad A; do + while read A; do if [ ! -f "$BUILDPLACE/var/cache/apt/archives/"$(basename "$A") -a \ -f "$A" ]; then echo " -> obsolete cache content "$(basename "$A")" removed" |