diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2017-02-03 09:36:55 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2017-02-04 11:21:33 +0100 |
commit | 647af1a0dd2e1ea880790df0c3047cb44c3cd53b (patch) | |
tree | 073fa8de49d7928ff49a0dec0c386e87371b311b | |
parent | b1e2192007d7026049237c9ab11e05ae71bf4f42 (diff) | |
download | ffmpeg-647af1a0dd2e1ea880790df0c3047cb44c3cd53b.tar.gz |
configure: add nologo switch to invocation of lib.exe
This suppresses the startup banner, which is consistent with all other calls
to the Windows SDK binaries.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4804,7 +4804,7 @@ case $target_os in SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)' dlltool="${cross_prefix}dlltool" if check_cmd lib.exe -list; then - SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)' + SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /nologo /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)' if enabled x86_64; then LIBTARGET=x64 fi |