From 6aca0eba03b03e3c898b132f5a6d005118ed6d4c Mon Sep 17 00:00:00 2001 From: Roger Leigh Date: Tue, 14 Jun 2011 19:30:59 +0100 Subject: [PATCH] dh: rules function joins array argument Appending @_ to a string appends the array length rather than the array contents, so join with separating whitespace. --- dh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh b/dh index 2eda335..8d8c920 100755 --- a/dh +++ b/dh @@ -801,7 +801,7 @@ sub rules_target { } sub rules { - return "debian/rules ".@_; + return "debian/rules ".join(" ", @_); } { -- 2.39.2