summaryrefslogtreecommitdiff
path: root/repo
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-02-09 20:33:51 +0000
committerdavidovski <david@davidovski.xyz>2022-02-09 20:33:51 +0000
commit4bbe79f3ce5e48353e73be39c0922555dfe52095 (patch)
tree40eee3d23a38040eab1229b6db1489353f43005b /repo
parent66008866a08ebe74ac6e7bdfa1770f281211371e (diff)
fixed xxhash to install to usr and not local
Diffstat (limited to 'repo')
-rw-r--r--repo/system/xxhash.xibuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/repo/system/xxhash.xibuild b/repo/system/xxhash.xibuild
index 2117b19..481d5df 100644
--- a/repo/system/xxhash.xibuild
+++ b/repo/system/xxhash.xibuild
@@ -9,10 +9,10 @@ DESC="xxHash is an Extremely fast Hash algorithm"
build () {
- make
+ make PREFIX=/usr -C xxHash
}
package () {
- make DESTDIR=$PKG_DEST install
+ make PREFIX=/usr DESTDIR=$PKG_DEST -C xxHash install
}