src/makefile: Use install instead of cp and mkdir.
This commit is contained in:
parent
c624761d32
commit
36461db5bb
1 changed files with 3 additions and 3 deletions
|
@ -75,9 +75,9 @@ print:
|
|||
# Install directories
|
||||
#
|
||||
|
||||
INSTALL_DIR=mkdir -p
|
||||
INSTALL_DATA=cp
|
||||
INSTALL_EXEC=cp
|
||||
INSTALL_DIR=install -d
|
||||
INSTALL_DATA=install -m644
|
||||
INSTALL_EXEC=install
|
||||
INSTALL_TOP=$(DESTDIR)$(prefix)
|
||||
|
||||
INSTALL_TOP_SHARE=$(INSTALL_TOP)/share/lua/$(LUAV)
|
||||
|
|
Loading…
Add table
Reference in a new issue