summaryrefslogtreecommitdiff
path: root/Ports/tinyscheme
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-03-11 19:50:44 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-11 21:01:29 +0100
commitf318ab6bed4603a18198b36da682b6fd36a68f91 (patch)
tree8e602fa2cc198f8a457c8fcf2c20f61ad63eebc9 /Ports/tinyscheme
parentf45e16a6a219e50124c57d031bd7738717c956af (diff)
downloadserenity-f318ab6bed4603a18198b36da682b6fd36a68f91.zip
Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIR
Fixes #5710.
Diffstat (limited to 'Ports/tinyscheme')
-rwxr-xr-xPorts/tinyscheme/package.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ports/tinyscheme/package.sh b/Ports/tinyscheme/package.sh
index 711f0d4397..68d23e59a0 100755
--- a/Ports/tinyscheme/package.sh
+++ b/Ports/tinyscheme/package.sh
@@ -10,8 +10,8 @@ build() {
}
install() {
- run mkdir -p "${SERENITY_ROOT}/Build/Root/usr/local/bin"
- run cp scheme "${SERENITY_ROOT}/Build/Root/usr/local/bin/tinyscheme"
- run mkdir -p "${SERENITY_ROOT}/Build/Root/usr/local/include/tinyscheme"
- run cp init.scm "${SERENITY_ROOT}/Build/Root/usr/local/include/tinyscheme/init.scm"
+ run mkdir -p "${SERENITY_BUILD_DIR}/Root/usr/local/bin"
+ run cp scheme "${SERENITY_BUILD_DIR}/Root/usr/local/bin/tinyscheme"
+ run mkdir -p "${SERENITY_BUILD_DIR}/Root/usr/local/include/tinyscheme"
+ run cp init.scm "${SERENITY_BUILD_DIR}/Root/usr/local/include/tinyscheme/init.scm"
}