summaryrefslogtreecommitdiff
path: root/Ports/bash
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-03 10:05:02 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-03 10:05:02 +0100
commit3d239be7b4fdf4e460c4c1c39a468e8529cc6548 (patch)
tree972e90a1a4f510c04a87075a7a8e13d0b0c961e0 /Ports/bash
parent4565b2d2d939fb3f3ce303b9814a30e49adb025e (diff)
downloadserenity-3d239be7b4fdf4e460c4c1c39a468e8529cc6548.zip
Ports: Undo POSIX sh compliance changes for now
Partial revert of 704f48d7f3a1a88047a64b4e2939878d6d4fafb8. These changes made the ports system unusable.
Diffstat (limited to 'Ports/bash')
-rwxr-xr-xPorts/bash/package.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/bash/package.sh b/Ports/bash/package.sh
index f378c32945..56daeb313f 100755
--- a/Ports/bash/package.sh
+++ b/Ports/bash/package.sh
@@ -1,4 +1,4 @@
-#!/bin/sh ../.port_include.sh
+#!/bin/bash ../.port_include.sh
port=bash
version=5.0
useconfigure=true
@@ -8,5 +8,5 @@ files="https://ftp.gnu.org/gnu/bash/bash-5.0.tar.gz bash-5.0.tar.gz"
build() {
run_replace_in_file "s/define GETCWD_BROKEN 1/undef GETCWD_BROKEN/" config.h
run_replace_in_file "s/define CAN_REDEFINE_GETENV 1/undef CAN_REDEFINE_GETENV/" config.h
- run make "$makeopts"
+ run make $makeopts
}