From 197f0cbbd9016e438c121f75da53380bec507a39 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Thu, 30 Oct 2008 07:33:19 +0000 Subject: [PATCH] Makefile: suppress warning on ldconfig failure. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1212 d19143bc-622f-0410-bfdd-b5b2a6649095 --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index afc885e..afbaecb 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ install: $(MAKE) DESTDIR=$(DESTDIR) -C $$subdir $@ || exit 1; \ done; \ if test -z "$(DESTDIR)"; then \ - /sbin/ldconfig || true; \ + /sbin/ldconfig 2> /dev/null || true; \ fi uninstall: -- 1.7.4.4