diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-02 18:50:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-02 18:50:45 +0100 |
commit | bc073092254df17b282d162d8e8181e8f6a7a356 (patch) | |
tree | 39a96ad527ab190dd9a5d4c8c9badc682bccbc44 /src/tee | |
parent | df5b27b20ec023274fb0f5347973d5abcde7ddd6 (diff) | |
download | vim-git-bc073092254df17b282d162d8e8181e8f6a7a356.tar.gz |
patch 7.4.1240v7.4.1240
Problem: Visual studio tools are noisy.
Solution: Suppress startup info. (Mike Williams)
Diffstat (limited to 'src/tee')
-rw-r--r-- | src/tee/Make_mvc.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tee/Make_mvc.mak b/src/tee/Make_mvc.mak index a957f944a..7fe22df37 100644 --- a/src/tee/Make_mvc.mak +++ b/src/tee/Make_mvc.mak @@ -1,7 +1,7 @@ # A very (if not the most) simplistic Makefile for MSVC CC=cl -CFLAGS=/O2 +CFLAGS=/O2 /nologo tee.exe: tee.obj $(CC) $(CFLAGS) /Fo$@ $** |