aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-modules
diff options
context:
space:
mode:
authordancer <dancer>2005-09-30 14:32:24 +0000
committerdancer <dancer>2005-09-30 14:32:24 +0000
commit5208fdb5d40c6979dd6618c693a6d2e6ab7514ce (patch)
tree3e58de6b34db1fc34ae91a72dbc3cb644b591e4a /pbuilder-modules
parent6a70276f0e3ef2980c035a03201b109922c0b3e7 (diff)
downloadpbuilder-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-modules')
-rw-r--r--pbuilder-modules4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-modules b/pbuilder-modules
index 40852d8..e1a782d 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -310,7 +310,7 @@ function recover_aptcache() {
doit=cp
fi
echo "Obtaining the cached apt archive contents"
- find "$APTCACHE" -name \*.deb -maxdepth 1 | \
+ find "$APTCACHE" -maxdepth 1 -name \*.deb | \
while read A ; do
$doit "$A" "$BUILDPLACE/var/cache/apt/archives/" || true
done
@@ -329,7 +329,7 @@ function save_aptcache() {
else
doit=cp
fi
- find "$BUILDPLACE/var/cache/apt/archives/" -name \*.deb -maxdepth 1 | \
+ find "$BUILDPLACE/var/cache/apt/archives/" -maxdepth 1 -name \*.deb | \
while read A ;do
if [ ! -f "$APTCACHE/"$(basename "$A") -a -f "$A" ]; then
echo " -> new cache content "$(basename "$A")" added"