summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-07-23 13:13:19 +0200
committerGuillem Jover <guillem@debian.org>2018-07-24 14:51:52 +0200
commit5cd52673aabdf5eaa58181972119a41041fc85f2 (patch)
treef39978334677e129f27d9d4c0c02f0a9cacf5a78
parent3525d759e6279de35f14bb6492ad0c7c5676f8c2 (diff)
downloaddpkg-5cd52673aabdf5eaa58181972119a41041fc85f2.tar.gz
dpkg-buildpackage: Fix --rules-file option parsing
Parse --rules-file instead of --rules-target, which made it a no-op. Fixes: commit 293bd243a19149165fc4fd8830b16a51d471a5e9 Stable-Candidate: 1.18.x
-rw-r--r--debian/changelog2
-rwxr-xr-xscripts/dpkg-buildpackage.pl2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 14a311e31..1cee622ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -64,6 +64,8 @@ dpkg (1.19.1) UNRELEASED; urgency=medium
for short key IDs and warn for long key IDs.
* On the dpkg conffile prompt, print the set of environment variables setup
for the conffile shell, for easier discoverability.
+ * Fix dpkg-buildpackage option --rules-file parsing. It was trying to parse
+ it as --rules-target, which due to the ordering was a no-op.
* Architecture support:
- Add support for riscv64 CPU. Closes: #822914
Thanks to Manuel A. Fernandez Montecelo <mafm@debian.org>
diff --git a/scripts/dpkg-buildpackage.pl b/scripts/dpkg-buildpackage.pl
index ee41555d7..ea2c61a47 100755
--- a/scripts/dpkg-buildpackage.pl
+++ b/scripts/dpkg-buildpackage.pl
@@ -346,7 +346,7 @@ while (@ARGV) {
} elsif (m/^-[EW]$/) {
# Deprecated option
warning(g_('-E and -W are deprecated, they are without effect'));
- } elsif (/^-R(.*)$/ or /^--rules-target=(.*)$/) {
+ } elsif (/^-R(.*)$/ or /^--rules-file=(.*)$/) {
my $arg = $1;
@debian_rules = split ' ', $arg;
} else {