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/quake | |
parent | f45e16a6a219e50124c57d031bd7738717c956af (diff) | |
download | serenity-f318ab6bed4603a18198b36da682b6fd36a68f91.zip |
Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIR
Fixes #5710.
Diffstat (limited to 'Ports/quake')
-rwxr-xr-x | Ports/quake/package.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ports/quake/package.sh b/Ports/quake/package.sh index bd0c43ad89..2185706566 100755 --- a/Ports/quake/package.sh +++ b/Ports/quake/package.sh @@ -7,4 +7,5 @@ files="https://github.com/SerenityOS/SerenityQuake/archive/master.tar.gz quake.t makeopts="V=1 SYMBOLS_ON=Y " depends=SDL2 -export PATH=${SERENITY_ROOT}/Build/Root/usr/bin:$PATH +# FIXME: Uhh, the things in this directory are not supposed to run on the host, why add this to $PATH?! +export PATH="${SERENITY_BUILD_DIR}/Root/usr/bin:${PATH}" |