forked from Mirror/frr
Redirect output of ranlib to /dev/null
./configure on Mac OS logs: checking whether ranlib supports D option... error: /Library/Developer/CommandLineTools/usr/bin/ranlib: unknown option character `D' in: -D Usage: /Library/Developer/CommandLineTools/usr/bin/ranlib [-sactfqLT] [-] archive [...] no This is quite noisy. Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
This commit is contained in:
parent
23e6726e0b
commit
29d46e4bb6
|
@ -360,7 +360,7 @@ AC_SUBST([ARFLAGS])
|
||||||
AC_SUBST([AR_FLAGS])
|
AC_SUBST([AR_FLAGS])
|
||||||
|
|
||||||
AC_MSG_CHECKING([whether $RANLIB supports D option])
|
AC_MSG_CHECKING([whether $RANLIB supports D option])
|
||||||
if $RANLIB -D conftest.a; then
|
if $RANLIB -D conftest.a >/dev/null 2>/dev/null; then
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
RANLIB="$RANLIB -D"
|
RANLIB="$RANLIB -D"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue