diff options
author | theantigod <theantigod@users.noreply.github.com> | 2017-08-26 02:25:23 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-08-26 02:33:01 -0400 |
commit | 09fc61e43607c4131475b0d31f41dd173d490b24 (patch) | |
tree | dd61e81c1970b407053087ffe8687d18afa43689 | |
parent | 3e1245504bcd40d98c2632c44bf881ba0df37a09 (diff) |
winbuild: fix embedded manifest option
Embedded manifest option didn't work due to incorrect path.
Fixes https://github.com/curl/curl/issues/1832
-rw-r--r-- | winbuild/MakefileBuild.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winbuild/MakefileBuild.vc b/winbuild/MakefileBuild.vc index 36ad4681c..524926a02 100644 --- a/winbuild/MakefileBuild.vc +++ b/winbuild/MakefileBuild.vc @@ -267,7 +267,7 @@ GEN_PDB = true !IFDEF EMBED_MANIFEST
-MANIFESTTOOL = mt -manifest $(DIRDIST)\$(PROGRAM_NAME).manifest -outputresource:$(DIRDIST)\$(PROGRAM_NAME);1
+MANIFESTTOOL = mt -manifest $(DIRDIST)\bin\$(PROGRAM_NAME).manifest -outputresource:$(DIRDIST)\bin\$(PROGRAM_NAME);1
!ENDIF
# Runtime library configuration
|