From 7a17c46b36927dde0b093d62d95a9e7c3f4b8a4e Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 23 Nov 2000 21:11:03 +0000 Subject: [PATCH] * 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. --- Alien/Package/Deb.pm | 2 +- debian/changelog | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Alien/Package/Deb.pm b/Alien/Package/Deb.pm index 1d14709..225d74a 100644 --- a/Alien/Package/Deb.pm +++ b/Alien/Package/Deb.pm @@ -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 diff --git a/debian/changelog b/debian/changelog index d9e8163..4990a50 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +alien (7.11) unstable; urgency=low + + * 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. + + -- Joey Hess Thu, 23 Nov 2000 13:02:52 -0800 + alien (7.10) unstable; urgency=low * Use dh_perl for automatic, correct perl dependancies, Closes: #77669