diff options
author | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
commit | e8213fac46bfcb8068a883cb88b2bb1587f190f9 (patch) | |
tree | 8ec5946d18961404efb12700267e10cffffa6db7 /repo/xi/xipkg.xibuild | |
parent | 79c82d8fc0a4f6618429a0373bb832afd105543e (diff) |
made packages work with musl
Diffstat (limited to 'repo/xi/xipkg.xibuild')
-rw-r--r-- | repo/xi/xipkg.xibuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repo/xi/xipkg.xibuild b/repo/xi/xipkg.xibuild index 565ba03..0c35503 100644 --- a/repo/xi/xipkg.xibuild +++ b/repo/xi/xipkg.xibuild @@ -1,9 +1,9 @@ #!/bin/sh MAKEDEPS="make" -DEPS="libressl curl dash xiutils findutils diffutils sed xichroot" +DEPS="libressl curl dash xiutils findutils diffutils sed xichroot grep" -PKG_VER=1.0.1 +PKG_VER=1.0.2 SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git BRANCH="v$PKG_VER" @@ -14,5 +14,5 @@ build () { } package () { - make DESTDIR=$PKG_DEST install || true + make DESTDIR=$PKG_DEST install } |