Files
termux-packages/packages/procps/pgrep.c.patch
termux-pacman-bot fabca7a71b procps: Make -f/--full the default for pgrep&pkill
Without -f/--full, pgrep&pkill matches searches by default only on
the binary name, which will not work with the changes proposed in
https://github.com/termux/termux-exec/pull/24, as there the binary
will always be /system/bin/linker64.
2023-10-04 12:40:01 +00:00

13 lines
340 B
Diff

diff -u -r ../src-orig/pgrep.c ./pgrep.c
--- ../src-orig/pgrep.c 2023-10-02 11:04:29.715645019 +0000
+++ ./pgrep.c 2023-10-02 11:17:10.632452771 +0000
@@ -80,7 +80,7 @@
/* User supplied arguments */
-static int opt_full = 0;
+static int opt_full = 1;
static int opt_long = 0;
static int opt_longlong = 0;
static int opt_oldest = 0;