diff options
author | joey <joey> | 1999-08-17 04:58:16 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 04:58:16 +0000 |
commit | 146954a9f0e172517970ebf9628940df6c09c366 (patch) | |
tree | bae462fb08973b1d5ed441e341a467a37d5a1139 /dh_movefiles | |
parent | 03d1a2e0c10456c65fbf36e1f38619803f4f2bfd (diff) | |
download | debhelper-146954a9f0e172517970ebf9628940df6c09c366.tar.gz |
r111: Initial Import
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-x | dh_movefiles | 4 |
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" |