diff options
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" |