diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-03 10:05:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-03 10:05:02 +0100 |
commit | 3d239be7b4fdf4e460c4c1c39a468e8529cc6548 (patch) | |
tree | 972e90a1a4f510c04a87075a7a8e13d0b0c961e0 /Ports/gcc | |
parent | 4565b2d2d939fb3f3ce303b9814a30e49adb025e (diff) | |
download | serenity-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/gcc')
-rwxr-xr-x | Ports/gcc/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ports/gcc/package.sh b/Ports/gcc/package.sh index 237a6847fb..9b9df8f307 100755 --- a/Ports/gcc/package.sh +++ b/Ports/gcc/package.sh @@ -1,4 +1,4 @@ -#!/bin/sh ../.port_include.sh +#!/bin/bash ../.port_include.sh port=gcc version=8.3.0 useconfigure=true @@ -18,10 +18,10 @@ fetch() { done } build() { - run make "$makeopts" + run make $makeopts run find ./host-i686-pc-serenity/gcc/ -maxdepth 1 -type f -executable -exec strip --strip-debug {} \; || echo } install() { - run make "$installopts" + run make $installopts } |