1
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:33:46 +01:00

Use 'install' instead of 'cp'

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4216 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2002-01-17 09:01:50 +00:00
parent 79cef0fa51
commit 785650a45b
2 changed files with 3 additions and 2 deletions

View File

@ -49,7 +49,8 @@ depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
install:
cp $(LIBNAME) $(prefix)/lib/$(LIBNAME)
mkdir -p $(prefix)/lib
install -m 755 -s -p $(LIBNAME) $(prefix)/lib/$(LIBNAME)
rm -f $(prefix)/lib/libdha.so
ln -sf $(LIBNAME) $(prefix)/lib/libdha.so
ldconfig

View File

@ -97,7 +97,7 @@ depend:
install:
mkdir -p $(BINDIR)
cp *.so $(BINDIR)
install -m 755 -s -p *.so $(BINDIR)
#
# include dependency files if they exist
#