diff options
author | Linus Groh <mail@linusgroh.de> | 2021-03-11 19:50:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-11 21:01:29 +0100 |
commit | f318ab6bed4603a18198b36da682b6fd36a68f91 (patch) | |
tree | 8e602fa2cc198f8a457c8fcf2c20f61ad63eebc9 /Ports/bash | |
parent | f45e16a6a219e50124c57d031bd7738717c956af (diff) | |
download | serenity-f318ab6bed4603a18198b36da682b6fd36a68f91.zip |
Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIR
Fixes #5710.
Diffstat (limited to 'Ports/bash')
-rwxr-xr-x | Ports/bash/package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/bash/package.sh b/Ports/bash/package.sh index 8d9a246a68..4447b3aefe 100755 --- a/Ports/bash/package.sh +++ b/Ports/bash/package.sh @@ -16,6 +16,6 @@ build() { } post_install() { - mkdir -p $SERENITY_ROOT/Build/Root/bin - ln -s /usr/local/bin/bash $SERENITY_ROOT/Build/Root/bin/bash + mkdir -p "${SERENITY_BUILD_DIR}/Root/bin" + ln -s /usr/local/bin/bash "${SERENITY_BUILD_DIR}/Root/bin/bash" } |