diff options
author | Andrew Innes <andrewi@gnu.org> | 1999-02-22 12:46:52 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1999-02-22 12:46:52 +0000 |
commit | 69bd9c93b7933665aade4c07f92b60003979ffd2 (patch) | |
tree | e1fad66430844a02b56e73f69bf04e8a60a73a5c /src/makefile.nt | |
parent | 312ae6bf9a593208dcc81a92af03002cd5c268d3 (diff) | |
download | emacs-69bd9c93b7933665aade4c07f92b60003979ffd2.tar.gz |
(EXTRA_LINK): Do version test with strings.
Diffstat (limited to 'src/makefile.nt')
-rw-r--r-- | src/makefile.nt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile.nt b/src/makefile.nt index bd09e4f99ca..52cad88d118 100644 --- a/src/makefile.nt +++ b/src/makefile.nt @@ -40,7 +40,7 @@ LOCAL_FLAGS = $(LOCAL_FLAGS) -DHAVE_NTGUI=1 # From MSVC 5.0 onwards, it seem base relocation information is not included, # at least in release builds. We need to ensure the reloc info is included # in order to use the MSVC profiler. -!IF ($(_NMAKE_VER) == $(_NMAKE_VER_4)) +!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") EXTRA_LINK = !ELSE EXTRA_LINK = -profile |