Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
procps-ng
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
procps-ng
Commits
32278e4e
Commit
32278e4e
authored
Jun 27, 2023
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgraded procps-ng to 3.3.17
parent
b85c6166
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
7 deletions
+26
-7
Makefile
Makefile
+8
-7
procps-ng-3.3.16.tar.xz
procps-ng-3.3.16.tar.xz
+0
-0
procps-ng-3.3.17-fix_pkill_tests.patch
procps-ng-3.3.17-fix_pkill_tests.patch
+18
-0
procps-ng-3.3.17.tar.xz
procps-ng-3.3.17.tar.xz
+0
-0
No files found.
Makefile
View file @
32278e4e
all
:
tar
xf procps-ng-3.3.16.tar.xz
cd
procps-ng-3.3.16
&&
./configure
--build
=
$(CLFS_TARGET)
--prefix
=
/usr
--exec-prefix
=
--libdir
=
/usr/lib
--docdir
=
/usr/share/doc/procps-ng-3.3.16
--disable-static
--disable-kill
--with-systemd
$(MAKE)
-C
procps-ng-3.3.16
cd
procps-ng-3.3.16
&&
sed
-i
-r
's|(pmap_initname)\\\$$|\1|'
testsuite/pmap.test/pmap.exp
tar
xf procps-ng-3.3.17.tar.xz
patch
-Np1
-d
procps-3.3.17 < procps-ng-3.3.17-fix_pkill_tests.patch
cd
procps-3.3.17
&&
./configure
--build
=
$(CLFS_TARGET)
--prefix
=
/usr
--exec-prefix
=
--libdir
=
/usr/lib
--docdir
=
/usr/share/doc/procps-ng-3.3.17
--disable-static
--disable-kill
--with-systemd
$(MAKE)
-C
procps-3.3.17
cd
procps-3.3.17
&&
sed
-i
-r
's|(pmap_initname)\\\$$|\1|'
testsuite/pmap.test/pmap.exp
if
[[
!
"
$(BUILD_OPTIONS)
"
=
~ no-tests
]]
;
then
\
$(MAKE)
-C
procps-
ng-3.3.16
check
;
\
$(MAKE)
-C
procps-
3.3.17
check
;
\
fi
$(MAKE)
-C
procps-
ng-3.3.16
install
$(MAKE)
-C
procps-
3.3.17
install
mv
-v
/usr/lib/libprocps.so.
*
/lib
ln
-sfv
../../lib/
$$
(
readlink
/usr/lib/libprocps.so
)
/usr/lib/libprocps.so
rm
-rf
procps-
ng-3.3.16
rm
-rf
procps-
3.3.17
procps-ng-3.3.16.tar.xz
deleted
100644 → 0
View file @
b85c6166
File deleted
procps-ng-3.3.17-fix_pkill_tests.patch
0 → 100644
View file @
32278e4e
diff -uNr procps-3.3.17/pgrep.c procps-3.3.17-fix_pkill_tests/pgrep.c
--- procps-3.3.17/pgrep.c 2021-02-09 20:41:25.000000000 +1030
+++ procps-3.3.17-fix_pkill_tests/pgrep.c 2022-10-19 00:01:44.562851704 +1030
@@ -794,12 +794,12 @@
};
#ifdef ENABLE_PWAIT
- if (strcmp (program_invocation_short_name, "pwait") == 0) {
+ if (strstr (program_invocation_short_name, "pwait")) {
prog_mode = PWAIT;
strcat (opts, "e");
} else
#endif
- if (strcmp (program_invocation_short_name, "pkill") == 0) {
+ if (strstr (program_invocation_short_name, "pkill")) {
int sig;
prog_mode = PKILL;
sig = signal_option(&argc, argv);
procps-ng-3.3.17.tar.xz
0 → 100644
View file @
32278e4e
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment