diff options
| author | Andrew Innes | 1999-01-27 21:49:57 +0000 |
|---|---|---|
| committer | Andrew Innes | 1999-01-27 21:49:57 +0000 |
| commit | 27d3ec7f872059482c2f01fa62ad3f126b6c0ffe (patch) | |
| tree | 38b29f06837cfaee7736c5e5bd4ab92b98e5e527 | |
| parent | 94d04df6d21b3fdc694a753e5903f8c33ca710df (diff) | |
| download | emacs-27d3ec7f872059482c2f01fa62ad3f126b6c0ffe.tar.gz emacs-27d3ec7f872059482c2f01fa62ad3f126b6c0ffe.zip | |
Do make version comparison as strings.
| -rw-r--r-- | lib-src/makefile.nt | 2 | ||||
| -rw-r--r-- | nt/makefile.nt | 2 | ||||
| -rw-r--r-- | src/makefile.nt | 2 |
3 files changed, 3 insertions, 3 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 | |||
| 217 | {$(BLD)}.obj{$(BLD)}.exe: | 217 | {$(BLD)}.obj{$(BLD)}.exe: |
| 218 | $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | 218 | $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) |
| 219 | 219 | ||
| 220 | !IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) | 220 | !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") |
| 221 | .c{$(BLD)}.obj: | 221 | .c{$(BLD)}.obj: |
| 222 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< | 222 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
| 223 | !ELSE | 223 | !ELSE |
diff --git a/nt/makefile.nt b/nt/makefile.nt index 122fadcaeed..8aba47dacb1 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt | |||
| @@ -29,7 +29,7 @@ TRES = $(BLD)\emacs.res | |||
| 29 | TRES = $(BLD)\emacs.rbj | 29 | TRES = $(BLD)\emacs.rbj |
| 30 | !endif | 30 | !endif |
| 31 | 31 | ||
| 32 | !IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) | 32 | !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") |
| 33 | .c{$(BLD)}.obj: | 33 | .c{$(BLD)}.obj: |
| 34 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< | 34 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
| 35 | !ELSE | 35 | !ELSE |
diff --git a/src/makefile.nt b/src/makefile.nt index 787018e4fce..65d763b4470 100644 --- a/src/makefile.nt +++ b/src/makefile.nt | |||
| @@ -248,7 +248,7 @@ $(TLASTLIB): $(BLD)\lastfile.obj | |||
| 248 | # | 248 | # |
| 249 | # Object files. | 249 | # Object files. |
| 250 | # | 250 | # |
| 251 | !IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) | 251 | !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") |
| 252 | .c{$(BLD)}.obj: | 252 | .c{$(BLD)}.obj: |
| 253 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< | 253 | $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
| 254 | !ELSE | 254 | !ELSE |