summaryrefslogtreecommitdiff
path: root/dh_movefiles
diff options
context:
space:
mode:
authorjoey <joey>1999-08-17 04:58:16 +0000
committerjoey <joey>1999-08-17 04:58:16 +0000
commit146954a9f0e172517970ebf9628940df6c09c366 (patch)
treebae462fb08973b1d5ed441e341a467a37d5a1139 /dh_movefiles
parent03d1a2e0c10456c65fbf36e1f38619803f4f2bfd (diff)
downloaddebhelper-146954a9f0e172517970ebf9628940df6c09c366.tar.gz
r111: Initial Import
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-xdh_movefiles4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_movefiles b/dh_movefiles
index ba482050..712ed887 100755
--- a/dh_movefiles
+++ b/dh_movefiles
@@ -44,13 +44,13 @@ for PACKAGE in $DH_DOPACKAGES; do
# moved.
doit "rm -f movelist"
for i in `(cd debian/tmp; echo $tomove)`; do
- if [ ! -e "debian/tmp/$i" -o -L "debian/tmp/$i" ]; then
+ if [ ! -e "debian/tmp/$i" -a ! -L "debian/tmp/$i" ]; then
fail=1
fi
complex_doit "(cd debian/tmp ; find $i ! -type d -and ! -type l -print || true) >> movelist"
done
for i in `(cd debian/tmp; echo $tomove)`; do
- if [ ! -e "debian/tmp/$i" -o -L "debian/tmp/$i" ]; then
+ if [ ! -e "debian/tmp/$i" -a ! -L "debian/tmp/$i" ]; then
fail=1
fi
complex_doit "(cd debian/tmp ; find $i ! -type d -and -type l -print || true) >> movelist"