commit 585b6a5

chld  ·  2026-08-22 23:09:48 +0000 UTC
parent 5fbf804
alsa-utils: give enable-static higher precedence??
1 files changed,  +2, -2
+2, -2
 1@@ -13,11 +13,11 @@ build() {
 2 		--sysconfdir=/etc \
 3 		--sbindir=/bin \
 4 		--prefix=/ \
 5-		--enable-static \
 6 		--without-gnu-ld \
 7 		--without-librt \
 8 		--with-curses=ncursesw \
 9-		--disable-libtool-lock || die "configure failed"
10+		--disable-libtool-lock \
11+		--enable-static || die "configure failed"
12 	gmake PREFIX="$PREFIX" CC=$static_cc CFLAGS='-static' LDFLAGS='-static' -j"$NPROC" || die "make failed"
13 	gmake PREFIX="$PREFIX" DESTDIR="$PKG" install || die "make install failed"
14 }