Skip to content

Commit c3c5da7

Browse files
author
David Keller
committed
Correct Windows/Cygwin build error.
Prevents wrong quote surrounding that leads to fatal error C1083: Cannot open include file: 'fficonfig.h': No such file or directory Signed-off-by: David Keller <david.keller@enyx.fr>
1 parent 84cc379 commit c3c5da7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

native/libffi/msvcc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ if [ -n "$assembly" ]; then
237237
fi
238238
ppsrc="$outdir/$(basename $src|sed 's/.S$/.asm/g')"
239239
echo "$cl -nologo -EP $includes $defines $src > $ppsrc"
240-
"$cl" -nologo -EP $includes $defines $src > $ppsrc || exit $?
240+
eval "\"$cl\" -nologo -EP $includes $defines $src > $ppsrc || exit $?"
241241
output="$(echo $output | sed 's%/F[dpa][^ ]*%%g')"
242242
args="-nologo $safeseh $single $output $ppsrc"
243243

0 commit comments

Comments
 (0)