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 ```
10 lines
328 B
Diff
10 lines
328 B
Diff
--- a/dmd/src/mars.c
|
|
+++ b/dmd/src/mars.c
|
|
@@ -267,6 +267,7 @@ int tryMain(size_t argc, const char *argv[])
|
|
|
|
// Set default values
|
|
global.params.argv0 = arguments[0];
|
|
+ global.params.pic = 1;
|
|
global.params.color = isConsoleColorSupported();
|
|
global.params.link = true;
|
|
global.params.useAssert = true;
|