summaryrefslogtreecommitdiff
path: root/package/fetchmail
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-06-09 16:59:02 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-06-09 16:59:02 +0200
commita2b66b348afe777384da74b5152668e72436c39d (patch)
tree7c5f42000d439e6ef1e26f175f88806a8532a87e /package/fetchmail
parent8a444564151f880d85c66b4c30ef3da63ef0687a (diff)
fetchmail: fix post install target hook
Due to a typo in commit a890032596aa5e6afbfdbcccc01fcb07c9a4ef8c ("package/fetchmail: fix *.pyc compilation with python-3"), the post install target hook was in fact not registered, and the build failure kept showing up. This commit fixes the typo. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/fetchmail')
-rw-r--r--package/fetchmail/fetchmail.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk
index 5cae0e2c4..6aa0a2c91 100644
--- a/package/fetchmail/fetchmail.mk
+++ b/package/fetchmail/fetchmail.mk
@@ -30,7 +30,7 @@ ifeq ($(BR2_PACKAGE_PYTHON3),y)
define FETCHMAIL_REMOVE_FETCHMAILCONF_PY
$(RM) -f $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/fetchmailconf.py
endef
-FETCHMAIL_POST_TARGET_INSTALL_HOOKS += FETCHMAIL_REMOVE_FETCHMAILCONF_PY
+FETCHMAIL_POST_INSTALL_TARGET_HOOKS += FETCHMAIL_REMOVE_FETCHMAILCONF_PY
endif
$(eval $(autotools-package))