861ac185a6
```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 ```
14 lines
342 B
Diff
14 lines
342 B
Diff
diff --git Makefile Makefile
|
|
index 7a9cc3e..ad5ad1d 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,7 +1,8 @@
|
|
PREFIX=/usr/local
|
|
+CFLAGS=-Wall
|
|
|
|
setcolors: setcolors.c
|
|
- gcc -Wall setcolors.c -o setcolors
|
|
+ $(CC) $(CFLAGS) setcolors.c -o setcolors
|
|
|
|
install: setcolors setcolors.1
|
|
install -Dm 755 setcolors "${DESTDIR}${PREFIX}/bin/setcolors"
|