diff options
author | davidovski <david@davidovski.xyz> | 2022-02-09 20:33:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-09 20:33:51 +0000 |
commit | 4bbe79f3ce5e48353e73be39c0922555dfe52095 (patch) | |
tree | 40eee3d23a38040eab1229b6db1489353f43005b /repo/system | |
parent | 66008866a08ebe74ac6e7bdfa1770f281211371e (diff) |
fixed xxhash to install to usr and not local
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/xxhash.xibuild | 4 |
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 } |