commit c574369

chld  ·  2026-08-29 04:39:05 +0000 UTC
parent 004338d
dfm: gmake -> make
1 files changed,  +5, -2
+5, -2
 1@@ -5,8 +5,11 @@ RELEASE=1
 2 SOURCE="https://github.com/dylanaraps/${NAME}"
 3 build(){
 4     CFLAGS="$CFLAGS -static" LDFLAGS="$CFLAGS -static" ./configure || die "configure failed"
 5-    gmake PREFIX="$PREFIX" DESTDIR="$PKG" || "gmake failed"
 6-    gmake PREFIX="$PREFIX" DESTDIR="$PKG" install || "gmake install failed"
 7+
 8+    # though using some type of configure, this only builds with bmake.
 9+    # love u dylan araps
10+    make PREFIX="$PREFIX" DESTDIR="$PKG" || "gmake failed"
11+    make PREFIX="$PREFIX" DESTDIR="$PKG" install || "gmake install failed"
12 } 
13 
14 . ${0%/*}/../../libsh/libdmake.sh