49cb564d14
* par is kept at -Np0 ```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 ```
20 lines
488 B
Diff
20 lines
488 B
Diff
--- a/Build.PL
|
|
+++ b/Build.PL
|
|
@@ -88,17 +88,7 @@ if ( $^O =~ /mswin32/i ) {
|
|
}
|
|
}
|
|
else {
|
|
- if ( $Config{archname} =~ /^x86_64|^ppc64|^s390x|^aarch64|^riscv64/ ) {
|
|
- $libdir =~ s/\bbin\b/lib64/;
|
|
- if ( !-d $libdir ) {
|
|
- my $test = $libdir;
|
|
- $test =~ s/lib64/lib/;
|
|
- $libdir = $test if -d $test;
|
|
- }
|
|
- }
|
|
- else {
|
|
$libdir =~ s/\bbin\b/lib/;
|
|
- }
|
|
$hdrdir = $libdir;
|
|
$hdrdir =~ s!/[^/]+/?$!/include!
|
|
}
|