浏览代码

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>
Thomas Petazzoni 9 年之前
父节点
当前提交
a2b66b348a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package/fetchmail/fetchmail.mk

+ 1 - 1
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))