summaryrefslogtreecommitdiffstats
path: root/package/vsftpd
diff options
context:
space:
mode:
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>2014-06-01 14:38:01 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-06-08 17:56:54 +0200
commitc96233807032d3f32628e16cba9456b7dcee34aa (patch)
tree9ed64681a7d243a5e4b1a5243cc6cb69e1ec5afd /package/vsftpd
parentffe60b1bfa062ae73f0db65c44ebd1781722cced (diff)
downloadbuildroot-c96233807032d3f32628e16cba9456b7dcee34aa.tar.gz
buildroot-c96233807032d3f32628e16cba9456b7dcee34aa.zip
packages: replace command install by $(INSTALL)
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/vsftpd')
-rw-r--r--package/vsftpd/vsftpd.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/vsftpd/vsftpd.mk b/package/vsftpd/vsftpd.mk
index fa6b5358fa..5801656265 100644
--- a/package/vsftpd/vsftpd.mk
+++ b/package/vsftpd/vsftpd.mk
@@ -36,10 +36,10 @@ define VSFTPD_BUILD_CMDS
endef
define VSFTPD_INSTALL_TARGET_CMDS
- install -D -m 755 $(@D)/vsftpd $(TARGET_DIR)/usr/sbin/vsftpd
- install -D -m 644 $(@D)/vsftpd.8 \
+ $(INSTALL) -D -m 755 $(@D)/vsftpd $(TARGET_DIR)/usr/sbin/vsftpd
+ $(INSTALL) -D -m 644 $(@D)/vsftpd.8 \
$(TARGET_DIR)/usr/share/man/man8/vsftpd.8
- install -D -m 644 $(@D)/vsftpd.conf.5 \
+ $(INSTALL) -D -m 644 $(@D)/vsftpd.conf.5 \
$(TARGET_DIR)/usr/share/man/man5/vsftpd.conf.5
test -f $(TARGET_DIR)/etc/init.d/S70vsftpd || \
$(INSTALL) -D -m 755 package/vsftpd/vsftpd-init \
@@ -47,7 +47,7 @@ define VSFTPD_INSTALL_TARGET_CMDS
test -f $(TARGET_DIR)/etc/vsftpd.conf || \
$(INSTALL) -D -m 644 $(@D)/vsftpd.conf \
$(TARGET_DIR)/etc/vsftpd.conf
- install -d -m 700 $(TARGET_DIR)/usr/share/empty
+ $(INSTALL) -d -m 700 $(TARGET_DIR)/usr/share/empty
endef
$(eval $(generic-package))
OpenPOWER on IntegriCloud