diff options
author | Andrew Innes <andrewi@gnu.org> | 1999-01-27 21:49:57 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1999-01-27 21:49:57 +0000 |
commit | 27d3ec7f872059482c2f01fa62ad3f126b6c0ffe (patch) | |
tree | 38b29f06837cfaee7736c5e5bd4ab92b98e5e527 /lib-src/makefile.nt | |
parent | 94d04df6d21b3fdc694a753e5903f8c33ca710df (diff) | |
download | emacs-27d3ec7f872059482c2f01fa62ad3f126b6c0ffe.tar.gz |
Do make version comparison as strings.
Diffstat (limited to 'lib-src/makefile.nt')
-rw-r--r-- | lib-src/makefile.nt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index 7cf6a979fe0..e3c1a2ef5de 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt @@ -217,7 +217,7 @@ $(DOC): $(BLD)\make-docfile.exe {$(BLD)}.obj{$(BLD)}.exe: $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) -!IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) +!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") .c{$(BLD)}.obj: $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< !ELSE |