]> git.donarmstrong.com Git - debhelper.git/commitdiff
Fix broken option passing to objcopy. Closes: #649044
authorJoey Hess <joey@kitenet.net>
Thu, 17 Nov 2011 04:15:32 +0000 (00:15 -0400)
committerJoey Hess <joey@kitenet.net>
Thu, 17 Nov 2011 04:15:32 +0000 (00:15 -0400)
debian/changelog
dh_strip

index 261dba6049afaa36d80cb86bd229ccd134b41155..f51a2eb4e96a778b4ede9e2ef79ab880c5ac4bcf 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (8.9.11) UNRELEASED; urgency=low
+
+  * Fix broken option passing to objcopy. Closes: #649044
+
+ -- Joey Hess <joeyh@debian.org>  Thu, 17 Nov 2011 00:15:10 -0400
+
 debhelper (8.9.10) unstable; urgency=low
 
   * dh_strip: In v9, pass --compress-debug-sections to objcopy.
index ae1594fead8c324b132f47d3a405104fc3935467..4dc69616f971a5678374526e172a577f948a4ba5 100755 (executable)
--- a/dh_strip
+++ b/dh_strip
@@ -170,7 +170,7 @@ sub make_debug {
                doit($objcopy, "--only-keep-debug", $file, $debug_path);
        }
        else {
-               doit($objcopy, "--only-keep-debug --compress-debug-sections", $file, $debug_path);
+               doit($objcopy, "--only-keep-debug", "--compress-debug-sections", $file, $debug_path);
        }
        # No reason for this to be executable.
        doit("chmod", 644, $debug_path);