diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-09-02 00:04:13 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-09-12 19:26:52 +0200 |
commit | 23ad529cb5426435490a3eb68c4ef5840da8a613 (patch) | |
tree | 96703fc23ae272e167168ce4fb5603b84f5691a2 | |
parent | 7811b05c9be41bfe67068d71c90bb28c54165efd (diff) | |
download | buildroot-novena-23ad529cb5426435490a3eb68c4ef5840da8a613.tar.gz buildroot-novena-23ad529cb5426435490a3eb68c4ef5840da8a613.zip |
haserl: convert to new style hook
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/haserl/haserl.mk | 11 |
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)) |