debian/rules.real: Fix dh_install arguments in install-source rule

dh_install used to treat each given filename/pattern as space-separated
(bug #198507), and we accidentally depended on that.  This was recently
fixed, leading to FTBFS.
This commit is contained in:
Ben Hutchings 2017-07-09 20:23:59 +01:00
parent 5cea93cf9c
commit 951507e517
1 changed files with 1 additions and 1 deletions

2
debian/rules.real vendored
View File

@ -523,7 +523,7 @@ install-source: $(BUILD_DIR)/$(SOURCE_PACKAGE_NAME)-source-$(UPSTREAMVERSION).ta
dh_testdir
dh_testroot
dh_installdirs /usr/src/linux-config-$(UPSTREAMVERSION)
dh_install '$^' /usr/src
dh_install $^ /usr/src
# Include our kernel config files, but with the module signing
# configuration fixed to work for custom kernels.
for triplet in $(ALL_TRIPLETS); do \