diff mbox series

[FFmpeg-devel] configure: Add dash before arflags

Message ID 20210729195854.1041-2-averne381@gmail.com
State New
Headers show
Series [FFmpeg-devel] configure: Add dash before arflags | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

avener July 29, 2021, 7:58 p.m. UTC
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/configure b/configure
index b61a189b07..428180273b 100755
--- a/configure
+++ b/configure
@@ -4869,10 +4869,10 @@  if $ar 2>&1 | grep -q Microsoft; then
     arflags="-nologo"
     ar_o='-out:$@'
 elif $ar 2>&1 | grep -q "\[D\] "; then
-    arflags="rcD"
+    arflags="-rcD"
     ar_o='$@'
 else
-    arflags="rc"
+    arflags="-rc"
     ar_o='$@'
 fi