diff options
author | davidovski <david@davidovski.xyz> | 2022-02-09 20:38:42 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-09 20:38:42 +0000 |
commit | c80bbb498e7fec79e925eb8f60667550e5926102 (patch) | |
tree | c0bfe9c654c7edf1c804cc42d74d1b781ec60a03 | |
parent | 4bbe79f3ce5e48353e73be39c0922555dfe52095 (diff) |
fixed xxhash not building
-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 481d5df..f02537b 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 PREFIX=/usr -C xxHash + make PREFIX=/usr } package () { - make PREFIX=/usr DESTDIR=$PKG_DEST -C xxHash install + make PREFIX=/usr DESTDIR=$PKG_DEST install } |