diff options
author | davidovski <david@davidovski.xyz> | 2022-04-17 22:07:52 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-04-17 22:07:52 +0100 |
commit | c35d083dc525e223b085ec00e6863ea6eafb003c (patch) | |
tree | 5bbe25b4f92cd1821c8cbbefed9c19de6e42b98e /repo/util | |
parent | 7cc715c1249422ddf91987be64a35eef43e3e62d (diff) |
updated musl
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/procps-ng.xibuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/repo/util/procps-ng.xibuild b/repo/util/procps-ng.xibuild index 27d35da..234892e 100644 --- a/repo/util/procps-ng.xibuild +++ b/repo/util/procps-ng.xibuild @@ -3,16 +3,16 @@ MAKEDEPS="make utmps" DEPS="ncurses" -PKG_VER=3.3.17 +PKG_VER=4.0.0 SOURCE=https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-$PKG_VER.tar.xz DESC="Utilities for monitoring your system and its processes" ADDITIONAL=" - https://raw.githubusercontent.com/dslm4515/Musl-LFS/master/patches/procps-mlfs/use_utmpx.patch + use_utmpx.patch " prepare () { - patch -Np1 -i use_utmpx.patch + apply_patches sed -i '1i#include <langinfo.h>' proc/escape.c } @@ -21,6 +21,7 @@ build () { ./configure --prefix=/usr \ --docdir=/usr/share/doc/procps-ng-$PKG_VER \ --disable-static \ + --disable-w \ --disable-kill make } |