From: Michael R Sweet Date: Fri, 20 Dec 2024 00:14:40 +0000 (-0500) Subject: Ignore ldconfig errors (Issue #1122) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8408a0b245881985ea8b8fac70e6f8eaf00268a;p=thirdparty%2Fcups.git Ignore ldconfig errors (Issue #1122) --- diff --git a/Makefile b/Makefile index b585d8b724..ea9d6bd614 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # # Top-level Makefile for CUPS. # -# Copyright © 2020-2023 by OpenPrinting +# Copyright © 2020-2024 by OpenPrinting # Copyright © 2007-2019 by Apple Inc. # Copyright © 1997-2007 by Easy Software Products, all rights reserved. # @@ -215,7 +215,7 @@ install-libs: libs echo Installing libraries in $$dir... ;\ (cd $$dir; $(MAKE) $(MFLAGS) install-libs) || exit 1;\ done - if test -x /usr/sbin/ldconfig; then \ + -if test -x /usr/sbin/ldconfig; then \ /usr/sbin/ldconfig; \ fi