diff options
author | 2014-06-01 14:38:01 +0200 | |
---|---|---|
committer | 2014-06-08 17:56:54 +0200 | |
commit | c96233807032d3f32628e16cba9456b7dcee34aa (patch) | |
tree | 9ed64681a7d243a5e4b1a5243cc6cb69e1ec5afd /package/fbv/fbv.mk | |
parent | ffe60b1bfa062ae73f0db65c44ebd1781722cced (diff) | |
download | buildroot-c96233807032d3f32628e16cba9456b7dcee34aa.tar.gz buildroot-c96233807032d3f32628e16cba9456b7dcee34aa.tar.bz2 |
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/fbv/fbv.mk')
-rw-r--r-- | package/fbv/fbv.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/fbv/fbv.mk b/package/fbv/fbv.mk index 309f4be623..a702a9bbbd 100644 --- a/package/fbv/fbv.mk +++ b/package/fbv/fbv.mk @@ -45,7 +45,7 @@ define FBV_BUILD_CMDS endef define FBV_INSTALL_TARGET_CMDS - install -D $(@D)/fbv $(TARGET_DIR)/usr/bin/fbv + $(INSTALL) -D $(@D)/fbv $(TARGET_DIR)/usr/bin/fbv endef $(eval $(autotools-package)) |