2fd8d4df94
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
19 lines
772 B
Diff
19 lines
772 B
Diff
orted-mpir is a helper that avoids CFLAGS which can optimize out certain MPIR
|
|
debugging functionality. It is unversioned, leaks dependencies into other MPI
|
|
modules and libraries, and upstream agrees it shouldn't be installed.
|
|
|
|
https://github.com/open-mpi/ompi/pull/8892
|
|
|
|
diff --git orte/orted/orted-mpir/Makefile.am orte/orted/orted-mpir/Makefile.am
|
|
index 5c0dd33564..8a03fcd387 100644
|
|
--- a/orte/orted/orted-mpir/Makefile.am
|
|
+++ b/orte/orted/orted-mpir/Makefile.am
|
|
@@ -15,7 +15,7 @@
|
|
|
|
CFLAGS = $(CFLAGS_WITHOUT_OPTFLAGS) $(DEBUGGER_CFLAGS)
|
|
|
|
-lib_LTLIBRARIES = lib@ORTE_LIB_PREFIX@open-orted-mpir.la
|
|
+noinst_LTLIBRARIES = lib@ORTE_LIB_PREFIX@open-orted-mpir.la
|
|
lib@ORTE_LIB_PREFIX@open_orted_mpir_la_SOURCES = \
|
|
orted_mpir_breakpoint.c \
|
|
orted_mpir.h
|