0d3a3a4eee
- Add rhbz1549063.patch (/bin/env -> /usr/bin/env) - Add rhbz1566745.patch (4.15 kernel tapset updates) - Enable accidentially disabled Suggests: kernel-devel again.
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
commit d6492e78bd50e923963e3c7aa235100a208f4775
|
|
Author: Mark Wielaard <mark@klomp.org>
|
|
Date: Mon Feb 26 11:31:44 2018 +0100
|
|
|
|
testsuite: Use /usr/bin/env everywhere.
|
|
|
|
bz5274.stp and bz5274.a.stp where still using /bin/env instead of
|
|
/usr/bin/env like every other testsuite file.
|
|
|
|
The latest coreutils in rawhide dropped old /bin/* provides.
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1549063
|
|
|
|
diff --git a/testsuite/systemtap.base/bz5274.a.stp b/testsuite/systemtap.base/bz5274.a.stp
|
|
index 1d3aefc..e6365e4 100755
|
|
--- a/testsuite/systemtap.base/bz5274.a.stp
|
|
+++ b/testsuite/systemtap.base/bz5274.a.stp
|
|
@@ -1,4 +1,4 @@
|
|
-#! /bin/env stap
|
|
+#! /usr/bin/env stap
|
|
probe process("./bz5274").function("funcb").call,
|
|
process("./bz5274").function("funcc").call,
|
|
process("./bz5274").function("funcd").call
|
|
diff --git a/testsuite/systemtap.base/bz5274.stp b/testsuite/systemtap.base/bz5274.stp
|
|
index b3e26d8..2f62cbc 100755
|
|
--- a/testsuite/systemtap.base/bz5274.stp
|
|
+++ b/testsuite/systemtap.base/bz5274.stp
|
|
@@ -1,4 +1,4 @@
|
|
-#! /bin/env stap
|
|
+#! /usr/bin/env stap
|
|
probe process("./bz5274").function("*").call {
|
|
printf("%s Entering %s\n", pp(), thread_indent(1))
|
|
}
|