summaryrefslogtreecommitdiff
path: root/Ports/ninja/package.sh
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-07-14 16:41:59 -0400
committerAndreas Kling <kling@serenityos.org>2020-07-15 00:07:20 +0200
commit4eb967b5ebd5ca7a00049c7f958011e54b975040 (patch)
tree25da6871473ae3484cf3c1c894b287b8be42626c /Ports/ninja/package.sh
parent782cd93c012bcad8a96dfd67aeb782ef49d380f9 (diff)
downloadserenity-4eb967b5ebd5ca7a00049c7f958011e54b975040.zip
LibC+Kernel: Start implementing sysconf
For now, only the non-standard _SC_NPROCESSORS_CONF and _SC_NPROCESSORS_ONLN are implemented. Use them to make ninja pick a better default -j value. While here, make the ninja package script not fail if no other port has been built yet.
Diffstat (limited to 'Ports/ninja/package.sh')
-rwxr-xr-xPorts/ninja/package.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ports/ninja/package.sh b/Ports/ninja/package.sh
index 6f56af4fde..977a95aa6e 100755
--- a/Ports/ninja/package.sh
+++ b/Ports/ninja/package.sh
@@ -13,5 +13,6 @@ build() {
}
install() {
+ mkdir -p "${SERENITY_ROOT}/Build/Root/usr/local/bin"
cp "${workdir}/ninja" "${SERENITY_ROOT}/Build/Root/usr/local/bin/ninja"
}