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/SDL2_ttf | |
parent | f45e16a6a219e50124c57d031bd7738717c956af (diff) | |
download | serenity-f318ab6bed4603a18198b36da682b6fd36a68f91.zip |
Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIR
Fixes #5710.
Diffstat (limited to 'Ports/SDL2_ttf')
-rwxr-xr-x | Ports/SDL2_ttf/package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/SDL2_ttf/package.sh b/Ports/SDL2_ttf/package.sh index 829d53bd6e..3856a4a4d1 100755 --- a/Ports/SDL2_ttf/package.sh +++ b/Ports/SDL2_ttf/package.sh @@ -8,7 +8,7 @@ depends="SDL2 freetype" configure() { run ./configure \ - --host=${SERENITY_ARCH}-pc-serenity \ - --with-sdl-prefix=${SERENITY_ROOT}/Build/Root/usr \ + --host="${SERENITY_ARCH}-pc-serenity" \ + --with-sdl-prefix="${SERENITY_BUILD_DIR}/Root/usr" \ LIBS="-lgui -lgfx -lipc -lcore -lcompress" } |