diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-11 22:04:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-11 22:04:21 +0200 |
commit | e28cfb28126c07abd9e9ba04e36b3789433201b6 (patch) | |
tree | 7286eb0643610f26a5f6bc8aed828e6e045f9c4a /src/Make_cyg_ming.mak | |
parent | 247bf0de465411e4ebb1c0fe1a9e07f4a7f77e91 (diff) | |
download | vim-git-e28cfb28126c07abd9e9ba04e36b3789433201b6.tar.gz |
patch 8.1.1662: cannot build uninstal.exe with some version of MinGWv8.1.1662
Problem: Cannot build uninstal.exe with some version of MinGW.
Solution: Add -lole32. (Rene Nyffenegger, closes #4646)
Diffstat (limited to 'src/Make_cyg_ming.mak')
-rw-r--r-- | src/Make_cyg_ming.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak index 1e1b243fa..d0769c39e 100644 --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -1006,7 +1006,7 @@ install.exe: dosinst.c $(CC) $(CFLAGS) -o install.exe dosinst.c $(LIB) -lole32 -luuid uninstal.exe: uninstal.c - $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) + $(CC) $(CFLAGS) -o uninstal.exe uninstal.c $(LIB) -lole32 ifeq ($(VIMDLL),yes) $(TARGET): $(OUTDIR) $(OBJ) |