From e8213fac46bfcb8068a883cb88b2bb1587f190f9 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 1 Mar 2022 21:25:54 +0000 Subject: made packages work with musl --- repo/system/attr.xibuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'repo/system/attr.xibuild') diff --git a/repo/system/attr.xibuild b/repo/system/attr.xibuild index 1598e77..bbd9a27 100644 --- a/repo/system/attr.xibuild +++ b/repo/system/attr.xibuild @@ -1,6 +1,6 @@ #!/bin/sh -MAKEDEPS="make " +MAKEDEPS="make" DEPS="musl" PKG_VER=2.5.1 @@ -9,11 +9,17 @@ SOURCE=http://download.savannah.nongnu.org/releases/attr/attr-$PKG_VER.tar.xz DESC="Extended attribute support library for ACL support" build () { - ./configure --prefix=/usr --disable-static --sysconfdir=/etc --docdir=/usr/share/doc/attr-$PKG_VER + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --disable-static \ + --sysconfdir=/etc \ + --docdir=/usr/share/doc/attr-$PKG_VER make } -check () { +# skip these tests since they require perl +NO_check () { make check } -- cgit v1.2.1