diff options
author | dancer <dancer> | 2005-09-30 14:32:24 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-09-30 14:32:24 +0000 |
commit | 5208fdb5d40c6979dd6618c693a6d2e6ab7514ce (patch) | |
tree | 3e58de6b34db1fc34ae91a72dbc3cb644b591e4a /pbuilder-updatebuildenv | |
parent | 6a70276f0e3ef2980c035a03201b109922c0b3e7 (diff) | |
download | pbuilder-5208fdb5d40c6979dd6618c693a6d2e6ab7514ce.tar pbuilder-5208fdb5d40c6979dd6618c693a6d2e6ab7514ce.tar.gz |
update documentation and manual pages
* suppress warnings from find; it wants -maxdepth before any other
argument. (closes: #330848)
* Documentation update patch from Osamu Aoki to clarify about
configuration file priorities and issues associated with it.
(closes: #325318)
Diffstat (limited to 'pbuilder-updatebuildenv')
-rwxr-xr-x | pbuilder-updatebuildenv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-updatebuildenv b/pbuilder-updatebuildenv index 8beade5..75a524f 100755 --- a/pbuilder-updatebuildenv +++ b/pbuilder-updatebuildenv @@ -52,7 +52,7 @@ save_aptcache 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 | \ + find "$APTCACHE/" -maxdepth 1 -name \*.deb | \ while read A; do if [ ! -f "$BUILDPLACE/var/cache/apt/archives/"$(basename "$A") -a \ -f "$A" ]; then |