diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2014-06-01 14:38:01 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-08 17:56:54 +0200 |
commit | c96233807032d3f32628e16cba9456b7dcee34aa (patch) | |
tree | 9ed64681a7d243a5e4b1a5243cc6cb69e1ec5afd /package/bonnie | |
parent | ffe60b1bfa062ae73f0db65c44ebd1781722cced (diff) |
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/bonnie')
-rw-r--r-- | package/bonnie/bonnie.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/bonnie/bonnie.mk b/package/bonnie/bonnie.mk index 6e879f741..9c576b6c2 100644 --- a/package/bonnie/bonnie.mk +++ b/package/bonnie/bonnie.mk @@ -9,8 +9,8 @@ BONNIE_SOURCE = bonnie++-$(BONNIE_VERSION).tgz BONNIE_SITE = http://www.coker.com.au/bonnie++/ define BONNIE_INSTALL_TARGET_CMDS - install -D -m 755 $(@D)/bonnie++ $(TARGET_DIR)/usr/sbin/bonnie++ - install -D -m 755 $(@D)/zcav $(TARGET_DIR)/usr/sbin/zcav + $(INSTALL) -D -m 755 $(@D)/bonnie++ $(TARGET_DIR)/usr/sbin/bonnie++ + $(INSTALL) -D -m 755 $(@D)/zcav $(TARGET_DIR)/usr/sbin/zcav endef $(eval $(autotools-package)) |