From f6f215f07f05224baff601729be7d00a64440d0d 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 e9b3f70f0..1379e58c4 100644 --- a/config/deb.am +++ b/config/deb.am @@ -70,7 +70,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; \