summaryrefslogtreecommitdiff
path: root/Mkfiles
diff options
context:
space:
mode:
authorNikolai Saoukh <nms@otdel-1.org>2017-04-05 11:10:44 -0400
committerH. Peter Anvin <hpa@zytor.com>2017-04-05 20:58:42 -0700
commit9546507861ce0039845ac5f619b83fbb0332a5df (patch)
tree770168d8392f0d04877e8c2bc3d85ec5abab8f23 /Mkfiles
parent6c48b424665372ddf16886cf2e2f997412c0f3f3 (diff)
downloadnasm-9546507861ce0039845ac5f619b83fbb0332a5df.tar.gz
BR 3392395: unbreak msvc.mak build due to a stray backslash
Extra backslash had eaten one innocent line, thus compiler flags (ALL_CFLAGS) are gone. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Mkfiles')
-rw-r--r--Mkfiles/msvc.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mkfiles/msvc.mak b/Mkfiles/msvc.mak
index 594509ba..1dedad61 100644
--- a/Mkfiles/msvc.mak
+++ b/Mkfiles/msvc.mak
@@ -35,7 +35,7 @@ INTERNAL_CFLAGS = /I$(srcdir) /I. \
/I$(srcdir)/x86 /I./x86 \
/I$(srcdir)/asm /I./asm \
/I$(srcdir)/disasm /I./disasm \
- /I$(srcdir)/output /I./output \
+ /I$(srcdir)/output /I./output
ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS)
LDFLAGS = $(LDFLAGS) /SUBSYSTEM:CONSOLE /RELEASE
LIBS =