From 24a28a24e32b1195ca5fc9f2d1303bc0368fe18b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 7 Feb 2022 23:29:13 -0500 Subject: [PATCH] ar-lib: ignore -nologo option We already invoke $AR with -NOLOGO all the time, so we can ignore the option entirely if the user specifies it. * lib/ar-lib: Ignore -NOLOGO. --- lib/ar-lib | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/ar-lib b/lib/ar-lib index 9dc8ef6df..54c6bdbf7 100755 --- a/lib/ar-lib +++ b/lib/ar-lib @@ -135,6 +135,10 @@ do AR="$AR $1" shift ;; + -nologo | -NOLOGO) + # We always invoke AR with -nologo, so don't need to add it again. + shift + ;; *) action=$1 shift -- 2.47.2