[linux] 01/01: debian/rules.real: Fix dh_install arguments in install-source rule

debian-kernel at lists.debian.org debian-kernel at lists.debian.org
Sun Jul 9 19:34:50 UTC 2017


This is an automated email from the git hooks/post-receive script.

benh pushed a commit to branch sid
in repository linux.

commit 951507e5179953af1232855df43f61f48e9f7c7c
Author: Ben Hutchings <ben at decadent.org.uk>
Date:   Sun Jul 9 20:23:59 2017 +0100

    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.
---
 debian/rules.real | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/rules.real b/debian/rules.real
index 2d53121..296459c 100644
--- a/debian/rules.real
+++ b/debian/rules.real
@@ -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 \

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/kernel/linux.git



More information about the Kernel-svn-changes mailing list