summaryrefslogtreecommitdiffstats
path: root/package/haserl
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-09-02 00:04:13 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-09-12 19:26:52 +0200
commit23ad529cb5426435490a3eb68c4ef5840da8a613 (patch)
tree96703fc23ae272e167168ce4fb5603b84f5691a2 /package/haserl
parent7811b05c9be41bfe67068d71c90bb28c54165efd (diff)
downloadbuildroot-novena-23ad529cb5426435490a3eb68c4ef5840da8a613.tar.gz
buildroot-novena-23ad529cb5426435490a3eb68c4ef5840da8a613.zip
haserl: convert to new style hook
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/haserl')
-rw-r--r--package/haserl/haserl.mk11
1 files changed, 6 insertions, 5 deletions
diff --git a/package/haserl/haserl.mk b/package/haserl/haserl.mk
index 257a257ae..53b554841 100644
--- a/package/haserl/haserl.mk
+++ b/package/haserl/haserl.mk
@@ -22,9 +22,10 @@ ifeq ($(BR2_PACKAGE_HASERL_WITH_LUA),y)
HASERL_DEPENDENCIES += lua
endif
-$(eval $(call AUTOTARGETS,package,haserl))
-
-# haserl 0.8.0 installs unneeded examples to /usr/share/haserl - remove them
-$(HASERL_HOOK_POST_INSTALL): $(HASERL_TARGET_INSTALL_TARGET)
+define HASERL_REMOVE_EXAMPLES
rm -rf $(TARGET_DIR)/usr/share/haserl
- touch $@
+endef
+
+HASERL_POST_INSTALL_TARGET_HOOKS += HASERL_REMOVE_EXAMPLES
+
+$(eval $(call AUTOTARGETS,package,haserl))