diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-16 12:40:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-16 23:35:43 +0200 |
commit | 0d42aba5426138379399331070d0b9a6ea784569 (patch) | |
tree | 8c118cea68f59f1b4e80f57de1b0d3d6e59b22f8 /package/linux-fusion | |
parent | a67a62c296103f50bff9f9e6bcfb90def2b8d62e (diff) | |
download | buildroot-novena-0d42aba5426138379399331070d0b9a6ea784569.tar.gz buildroot-novena-0d42aba5426138379399331070d0b9a6ea784569.zip |
linux-fusion: use install target instead of headers_install
The headers_install target no longer exists in the Makefile, the
installation of headers is done by the install target.
Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Diffstat (limited to 'package/linux-fusion')
-rw-r--r-- | package/linux-fusion/linux-fusion.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/linux-fusion/linux-fusion.mk b/package/linux-fusion/linux-fusion.mk index c9ebed758..54f53a318 100644 --- a/package/linux-fusion/linux-fusion.mk +++ b/package/linux-fusion/linux-fusion.mk @@ -37,7 +37,7 @@ define LINUX_FUSION_INSTALL_STAGING_CMDS $(MAKE) $(TARGET_CONFIGURE_OPTS) \ $(LINUX_FUSION_MAKE_OPTS) \ INSTALL_MOD_PATH=$(STAGING_DIR) \ - -C $(@D) headers_install + -C $(@D) install endef define LINUX_FUSION_INSTALL_TARGET_CMDS |