mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-02 09:00:20 +00:00
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.
13 lines
340 B
Diff
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;
|