From c07a8660f07c954c4b5dc8d8b7972b76321708d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20R=C3=BCegg?= Date: Thu, 29 Dec 2022 10:59:12 +0100 Subject: [PATCH] Fix shebang for helper script of deb-utils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shebang was missing the `!` between `#` and the actual path. Reviewed-by: Brian Behlendorf Reviewed-by: Ryan Moeller Signed-off-by: Martin Rüegg Closes #14339 --- config/deb.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deb.am b/config/deb.am index 643b34d06c..2dcd30ee8f 100644 --- a/config/deb.am +++ b/config/deb.am @@ -66,7 +66,7 @@ deb-utils: deb-local rpm-utils-initramfs ## to do this, so we install a shim onto the path which calls the real ## dh_shlibdeps with the required arguments. path_prepend=`mktemp -d /tmp/intercept.XXXXXX`; \ - echo "#$(SHELL)" > $${path_prepend}/dh_shlibdeps; \ + echo "#!$(SHELL)" > $${path_prepend}/dh_shlibdeps; \ echo "`which dh_shlibdeps` -- \ -xlibuutil3linux -xlibnvpair3linux -xlibzfs5linux -xlibzpool5linux" \ >> $${path_prepend}/dh_shlibdeps; \