summaryrefslogtreecommitdiffstats
path: root/libdha
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-26 21:17:14 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-26 21:17:14 +0000
commit338e4f8b76f8adce21dc3a7b5db98ca73a283072 (patch)
tree6e1509a91aea18262f3e7f234c30b831eacaad87 /libdha
parenteaa4eee69cab325378988a9d3dc496ee3de87f9f (diff)
downloadmpv-338e4f8b76f8adce21dc3a7b5db98ca73a283072.tar.bz2
mpv-338e4f8b76f8adce21dc3a7b5db98ca73a283072.tar.xz
Discard return value from ldconfig, it might not work on non-root installs.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17965 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha')
-rw-r--r--libdha/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdha/Makefile b/libdha/Makefile
index f40e512d5e..3e6725e457 100644
--- a/libdha/Makefile
+++ b/libdha/Makefile
@@ -87,17 +87,17 @@ install:
rm -f $(LIBDIR)/libdha.so
ln -sf $(LIBNAME) $(LIBDIR)/$(SHORTNAME)
ifeq ($(TARGET_OS),OpenBSD)
- ldconfig -R
+ -ldconfig -R
else
- ldconfig
+ -ldconfig
endif
uninstall:
rm -f $(LIBDIR)/libdha.so $(LIBDIR)/$(SHORTNAME) $(LIBDIR)/$(LIBNAME)
ifeq ($(TARGET_OS),OpenBSD)
- ldconfig -R
+ -ldconfig -R
else
- ldconfig
+ -ldconfig
endif
#