Ticket #19850: patch-acincludes.m4.diff
File patch-acincludes.m4.diff, 426 bytes (added by jim@…, 15 years ago) |
---|
-
acinclude.m4
old new 444 444 for arg in "$[]@"; do 445 445 case "$arg" in 446 446 --mode=compile) modeok=true ;; 447 447 --tag=CC|--tag=CXX) tagok=true ;; 448 *) args +=("$arg")448 *) args[${#args[*]}]="$arg" 449 449 esac 450 450 done 451 451 if $modeok && $tagok ; then 452 452 . ${top_builddir_slash}doltcompile "${args@<:@@@:>@}"