blob: b90dba4cdc6ad488ebb84a903a4de57780262a7d (
plain)
1
2
3
4
5
6
7
8
9
|
# nasm: error: more than one input file specified
# the -- is the problem, patching it out of Makefiles to avoid retooling
eval "$(
declare -f build | \
sed '
4 a find . -name Makefile -exec sed -i "/nasm/s/--//g" {} \\;
'
)"
|