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 ```
11 lines
513 B
Diff
11 lines
513 B
Diff
--- a/lib/Makefile 2008-01-14 16:48:45.000000000 +0100
|
|
+++ b/lib/Makefile 2009-05-26 09:47:42.000000000 +0200
|
|
@@ -48,7 +48,7 @@
|
|
|
|
$(OUT_SLIB): ../Makefile.opts $(OBJ)
|
|
@echo " LD $(OUT_SLIB)"; \
|
|
- $(CC) -shared -Wl,-soname,libnl.so.1 -o $(OUT_SLIB) $(OBJ) $(LIBNL_LIB) -lc
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,libnl.so.1 -o $(OUT_SLIB) $(OBJ) $(LIBNL_LIB) -lc
|
|
@echo " LN $(OUT_SLIB) $(LN1_SLIB)"; \
|
|
rm -f $(LN1_SLIB) ; $(LN) -s $(OUT_SLIB) $(LN1_SLIB)
|
|
@echo " LN $(LN1_SLIB) $(LN_SLIB)"; \
|