File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -929,7 +929,7 @@ ifdef MSVC
929
929
CC = compat/vcbuild/scripts/clink.pl
930
930
AR = compat/vcbuild/scripts/lib.pl
931
931
CFLAGS =
932
- BASIC_CFLAGS = -nologo -I. -I../zlib -Icompat/vcbuild -Icompat/vcbuild/include -DWIN32-D_CONSOLE -DHAVE_STRING_H -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE
932
+ BASIC_CFLAGS = -nologo -I. -I../zlib -Icompat/vcbuild -Icompat/vcbuild/include -DWIN32 -D_CONSOLE -DHAVE_STRING_H -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE
933
933
COMPAT_OBJS = compat/msvc.o compat/fnmatch/fnmatch.o compat/winansi.o
934
934
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DNOGDI -DHAVE_STRING_H -DHAVE_ALLOCA_H -Icompat -Icompat/fnmatch -Icompat/regex -Icompat/fnmatch -DSTRIP_EXTENSION=\".exe\"
935
935
BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -SUBSYSTEM:CONSOLE -NODEFAULTLIB:MSVCRT.lib
Original file line number Diff line number Diff line change 45
45
push (@args , @cflags );
46
46
}
47
47
# printf("**** @args\n");
48
- exit system (@args );
48
+ exit ( system (@args ) != 0 );
Original file line number Diff line number Diff line change 23
23
}
24
24
unshift (@args , " lib.exe" );
25
25
# printf("**** @args\n");
26
- exit system (@args );
26
+ exit ( system (@args ) != 0 );
You can’t perform that action at this time.
0 commit comments