diff options
author | joey <joey> | 1999-08-17 04:56:57 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 04:56:57 +0000 |
commit | 0a47c6cde2c9bca0f650b8731bb9fd11a7797f9e (patch) | |
tree | 7f84251a11d27330a34cb5237727e2fd361bce6c /dh_movefiles | |
parent | 8c9a7b69225a5dc4b97d03df01bd9f594a2870a1 (diff) | |
download | debhelper-0a47c6cde2c9bca0f650b8731bb9fd11a7797f9e.tar.gz |
r109: 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 f44121c8..ba482050 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" ]; then + if [ ! -e "debian/tmp/$i" -o -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" ]; then + if [ ! -e "debian/tmp/$i" -o -L "debian/tmp/$i" ]; then fail=1 fi complex_doit "(cd debian/tmp ; find $i ! -type d -and -type l -print || true) >> movelist" |