aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMartin Rüegg <martin.rueegg@metaworx.ch>2022-12-29 09:59:12 +0000
committerBrian Behlendorf <behlendorf1@llnl.gov>2023-01-05 18:50:00 +0000
commitf6f215f07f05224baff601729be7d00a64440d0d (patch)
treed7342862ddd7904bb37eaf4ea80d032c3e102692 /config
parentfb000f786721204283af88ba0b76bf482704d470 (diff)
downloadsrc-f6f215f07f05224baff601729be7d00a64440d0d.tar.gz
src-f6f215f07f05224baff601729be7d00a64440d0d.zip
Fix shebang for helper script of deb-utils
Shebang was missing the `!` between `#` and the actual path. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Martin Rüegg <martin.rueegg@metaworx.ch> Closes #14339
Diffstat (limited to 'config')
-rw-r--r--config/deb.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/deb.am b/config/deb.am
index e9b3f70f0bfb..1379e58c40a8 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; \