b6bcd8cd34
* daemontools and dmraid 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 ```
11 lines
375 B
Diff
11 lines
375 B
Diff
--- a/transport.hxx~ 2008-03-25 21:24:47.000000000 -0400
|
|
+++ b/transport.hxx 2008-03-25 21:25:36.000000000 -0400
|
|
@@ -116,7 +116,7 @@
|
|
extern "C" char *plusminus_locale()
|
|
{ static class __plusminus {
|
|
private:
|
|
- char str[4];
|
|
+ char str[MB_LEN_MAX];
|
|
public:
|
|
__plusminus() { setlocale(LC_CTYPE,ENV_LOCALE);
|
|
int l = wctomb(str,(wchar_t)(unsigned char)'±');
|