mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
* 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user