less: use correct step override method

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2010-09-01 23:50:19 +02:00
parent edf47fc62c
commit 0d5cf75df6

View File

@ -8,15 +8,12 @@ LESS_VERSION = 436
LESS_SITE = http://www.greenwoodsoftware.com/less
LESS_DEPENDENCIES = ncurses
$(eval $(call AUTOTARGETS,package,less))
define LESS_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 $(@D)/less $(TARGET_DIR)/usr/bin/less
endef
$(LESS_TARGET_INSTALL_TARGET):
$(call MESSAGE,"Installing to target")
$(INSTALL) -m 0755 $(LESS_DIR)/less \
$(TARGET_DIR)/usr/bin/less
touch $@
$(LESS_TARGET_UNINSTALL):
$(call MESSAGE,"Uninstalling")
define LESS_UNINSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/usr/bin/less
rm -f $(LESS_TARGET_INSTALL_TARGET) $(LESS_HOOK_POST_INSTALL)
endef
$(eval $(call AUTOTARGETS,package,less))