diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 10:26:33 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 12:16:56 +0200 |
commit | bab9e3ed89a5e44ed02702018b086fe560b2586f (patch) | |
tree | 9cc58ccd05982b35f792cb6cba544cf7d611e1b1 | |
parent | c39ce8e67cdf5eacdeb0562deb54bcd440c4f747 (diff) |
*.SlackBuild: Change shebang to /bin/bash
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
-rw-r--r-- | autotools-template.SlackBuild | 2 | ||||
-rw-r--r-- | cmake-template.SlackBuild | 2 | ||||
-rw-r--r-- | haskell-template.SlackBuild | 2 | ||||
-rw-r--r-- | meson-template.SlackBuild | 2 | ||||
-rw-r--r-- | perl-template.SlackBuild | 2 | ||||
-rw-r--r-- | python-template.SlackBuild | 2 | ||||
-rw-r--r-- | rubygem-template.SlackBuild | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/autotools-template.SlackBuild b/autotools-template.SlackBuild index ff59922..4c330b5 100644 --- a/autotools-template.SlackBuild +++ b/autotools-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/cmake-template.SlackBuild b/cmake-template.SlackBuild index 0f54d3b..2bda501 100644 --- a/cmake-template.SlackBuild +++ b/cmake-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/haskell-template.SlackBuild b/haskell-template.SlackBuild index 75527a0..77c6d4d 100644 --- a/haskell-template.SlackBuild +++ b/haskell-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/meson-template.SlackBuild b/meson-template.SlackBuild index 7ef67be..841d880 100644 --- a/meson-template.SlackBuild +++ b/meson-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/perl-template.SlackBuild b/perl-template.SlackBuild index 2521e76..b176454 100644 --- a/perl-template.SlackBuild +++ b/perl-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/python-template.SlackBuild b/python-template.SlackBuild index 2f76eba..5ec4def 100644 --- a/python-template.SlackBuild +++ b/python-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> diff --git a/rubygem-template.SlackBuild b/rubygem-template.SlackBuild index 1c5543f..28ce5a4 100644 --- a/rubygem-template.SlackBuild +++ b/rubygem-template.SlackBuild @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for <appname> |