04b9978a29
* wine 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
309 B
Diff
11 lines
309 B
Diff
--- a/Makefile.bck 2016-06-20 11:50:20.743169924 -0400
|
|
+++ b/Makefile 2016-06-20 11:50:28.302087497 -0400
|
|
@@ -12,7 +12,7 @@
|
|
|
|
wm2: $(OBJECTS)
|
|
mv -f wm2 wm2.old >& /dev/null || true
|
|
- $(CCC) -o wm2 $(OBJECTS) $(LIBS)
|
|
+ $(CCC) -o wm2 $(OBJECTS) $(LDFLAGS) $(LIBS)
|
|
|
|
depend:
|
|
makedepend -- $(CFLAGS) -- *.C
|