The following commit has been merged in the master branch:
commit c5bda94282dcb91efd799bd0cd56c20f6108aedf
Author: James McCoy <[email protected]>
Date: Sun Dec 11 19:48:39 2011 -0500
Fix compilation errors introduced in compression handling commit.
Signed-off-by: James McCoy <[email protected]>
diff --git a/scripts/debuild.pl b/scripts/debuild.pl
index 33fa35b..4dad8b7 100755
--- a/scripts/debuild.pl
+++ b/scripts/debuild.pl
@@ -1216,7 +1216,7 @@ EOT
my $ext = $compression_re_file_ext;
if (fileomitted @files, '\.deb') {
# source only upload
- if (fileomitted @files, "\\.diff\\.$ext" and fileomitted @files
"\\.debian\\.tar\\.$ext") {
+ if (fileomitted @files, "\\.diff\\.$ext" and fileomitted @files,
"\\.debian\\.tar\\.$ext") {
$srcmsg='source only upload: Debian-native package';
} elsif (fileomitted @files, "\\.orig\\.tar\\.$ext") {
$srcmsg='source only, diff-only upload (original source NOT
included)';
@@ -1226,7 +1226,7 @@ EOT
} else {
if (fileomitted @files, '\.dsc') {
$srcmsg='binary only upload (no source included)'
- } elsif (fileomitted @files, "\\.diff\\.$ext" and fileomitted
@files "\\.debian\\.tar\\.$ext") {
+ } elsif (fileomitted @files, "\\.diff\\.$ext" and fileomitted
@files, "\\.debian\\.tar\\.$ext") {
$srcmsg='full upload; Debian-native package (full source is
included)';
} elsif (fileomitted @files, "\\.orig\\.tar\\.$ext") {
$srcmsg='binary and diff upload (original source NOT included)';
--
Git repository for devscripts
--
To unsubscribe, send mail to [email protected].