ae69000001
* arduino and antiword 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 ```
16 lines
544 B
Diff
16 lines
544 B
Diff
diff --git libs/ardour/wscript libs/ardour/wscript
|
|
index 49cea6a..a7f8e84 100644
|
|
--- a/libs/ardour/wscript
|
|
+++ b/libs/ardour/wscript
|
|
@@ -384,7 +384,7 @@ def build(bld):
|
|
|
|
# remove '${DEFINES_ST:DEFINES}' from run_str.
|
|
# x86_64-w64-mingw32-as (mingw) -D flag is for debug messages
|
|
- if bld.env['build_target'] == 'mingw':
|
|
+ if True:
|
|
class asm(Task.classes['asm']): run_str = '${AS} ${ASFLAGS} ${ASMPATH_ST:INCPATHS} ${AS_SRC_F}${SRC} ${AS_TGT_F}${TGT}'
|
|
|
|
# operate on copy to avoid adding sources twice
|
|
--
|
|
2.26.2
|
|
|