diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2017-02-06 19:45:54 +0100 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2017-02-06 19:47:20 +0100 |
commit | a6cee50fa206466f7a5fe8a46f87561a403ff52f (patch) | |
tree | 8a34174eb902bc364a48796ad71785f2adaaa88e | |
parent | e248522d1b0d6dd8641f382cd5c4338d0ecd98e5 (diff) | |
download | ffmpeg-a6cee50fa206466f7a5fe8a46f87561a403ff52f.tar.gz |
configure: use dashes instead of slashes in lib.exe invocation
This avoids issues with wrong parameter translation by msys on some systems,
and the Windows SDK tools accept both forms equally.
-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 /nologo /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 |