* Use ls -1 instead of plain ls when copying files to debian/tmp in rpm

conversion. Since that output is grep'ed, items might have been
     accidentually excuded before (although ls seems to output one file per
     line when run inside makefiles, probably because it notices it is not
     at a tty). Anyway, I had a report that there was a problem here, and
     this should fix it.
This commit is contained in:
joey
2000-11-23 21:11:03 +00:00
parent 73f3d5b7ad
commit 7a17c46b36
2 changed files with 12 additions and 1 deletions

View File

@@ -333,7 +333,7 @@ binary-arch: build
dh_testroot
dh_clean -k
dh_installdirs
cp -a `ls |grep -v debian` debian/tmp
cp -a `ls -1 |grep -v debian` debian/tmp
#
# If you need to move files around in debian/tmp or do some
# binary patching ... Insert it here