mirror of https://github.com/mpv-player/mpv
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
This commit is contained in:
parent
eaa4eee69c
commit
338e4f8b76
|
@ -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
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue