summaryrefslogtreecommitdiff
path: root/repo/devel/ninja.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-01 21:25:54 +0000
committerdavidovski <david@davidovski.xyz>2022-03-01 21:25:54 +0000
commite8213fac46bfcb8068a883cb88b2bb1587f190f9 (patch)
tree8ec5946d18961404efb12700267e10cffffa6db7 /repo/devel/ninja.xibuild
parent79c82d8fc0a4f6618429a0373bb832afd105543e (diff)
made packages work with musl
Diffstat (limited to 'repo/devel/ninja.xibuild')
-rw-r--r--repo/devel/ninja.xibuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/repo/devel/ninja.xibuild b/repo/devel/ninja.xibuild
index f32c3ea..8cb3011 100644
--- a/repo/devel/ninja.xibuild
+++ b/repo/devel/ninja.xibuild
@@ -16,9 +16,9 @@ check () {
}
package () {
- mkdir -pv $PKG_DEST/usr/bin
- mkdir -pv $PKG_DEST/usr/share/{bash-completion/completions,zsh/site-functions}
- install -vm755 ninja $PKG_DEST/usr/bin/
- install -vDm644 misc/bash-completion $PKG_DEST/usr/share/bash-completion/completions/ninja
- install -vDm644 misc/zsh-completion $PKG_DEST/usr/share/zsh/site-functions/_ninja
+ mkdir -p $PKG_DEST/usr/bin
+ mkdir -p $PKG_DEST/usr/share/{bash-completion/completions,zsh/site-functions}
+ install -m755 ninja $PKG_DEST/usr/bin/
+ install -Dm644 misc/bash-completion $PKG_DEST/usr/share/bash-completion/completions/ninja
+ install -Dm644 misc/zsh-completion $PKG_DEST/usr/share/zsh/site-functions/_ninja
}