diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-26 09:20:24 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-26 19:52:09 +0200 |
commit | 0018ec74bda9987f4f8ee56dd8e888d4009eb585 (patch) | |
tree | 01c94d4269fdde66a0b05b0f63d1cd54cbb36a01 /package/ncurses | |
parent | fd08153b9d677d654add6c580b9ccc5c27d672e2 (diff) | |
download | buildroot-novena-0018ec74bda9987f4f8ee56dd8e888d4009eb585.tar.gz buildroot-novena-0018ec74bda9987f4f8ee56dd8e888d4009eb585.zip |
ncurses: get the post staging installation hook called properly
There was a typo in the name of the variable to register the hook,
which prevent the hook from actually being called.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ncurses')
-rw-r--r-- | package/ncurses/ncurses.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index 421d85522..72a803043 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -57,7 +57,7 @@ define NCURSES_PATCH_NCURSES_CONFIG $(STAGING_DIR)/usr/bin/ncurses5-config endef -NCURSES_POST_STAGING_INSTALL_HOOKS += NCURSES_PATCH_NCURSES_CONFIG +NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_PATCH_NCURSES_CONFIG ifeq ($(BR2_HAVE_DEVFILES),y) define NCURSES_INSTALL_TARGET_DEVFILES |