3353bf4722
```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 ```
9 lines
234 B
Diff
9 lines
234 B
Diff
--- a/Makefile 2017-05-16 00:48:25.302317545 -0500
|
|
+++ b/Makefile 2017-05-16 00:47:47.801022135 -0500
|
|
@@ -1,5 +1,5 @@
|
|
CC = gcc
|
|
-LDFLAGS = -lImlib2 -lX11
|
|
+override LDFLAGS += -lImlib2 -lX11
|
|
CFLAGS ?= -O2 -s
|
|
|
|
all: xlunch icons.conf
|