asn1: use " instead of ' when quoting on Windows

NMAKE on Windows requires " instead of ' be used when quoting arguments. Fixes
regression introduced in fe095aa1c0.
This commit is contained in:
Luke Howard
2021-12-22 14:52:04 +11:00
parent 7cd99b86d3
commit 7990dc287d

View File

@@ -316,7 +316,7 @@ $(gen_files_test) $(OBJ)\test_asn1.hx: $(BINDIR)\asn1_compile.exe test.asn1
cd $(OBJ)
$(BINDIR)\asn1_compile.exe \
--template \
--decorate='TESTDecorated:TESTuint32:version2?' \
--decorate="TESTDecorated:TESTuint32:version2?" \
--one-code-file --sequence=TESTSeqOf \
$(SRCDIR)\test.asn1 test_asn1 \
|| ($(RM) $(OBJ)\test_asn1.h ; exit /b 1)
@@ -326,7 +326,7 @@ $(gen_files_test_template) $(OBJ)\test_template_asn1.hx: $(BINDIR)\asn1_compile.
cd $(OBJ)
$(BINDIR)\asn1_compile.exe \
--template \
--decorate='TESTDecorated:TESTuint32:version2?' \
--decorate="TESTDecorated:TESTuint32:version2?" \
--one-code-file \
--sequence=TESTSeqOf \
$(SRCDIR)\test.asn1 test_template_asn1 \