diff options
author | David Bachelart <david.bachelart@bbright.com> | 2014-07-10 14:00:26 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-15 20:28:05 +0200 |
commit | 9aaf13c91c16b520ac8a4c4d1f94296f56ee13f8 (patch) | |
tree | f6db1ad957e39d3ae5e5e1d83809e9d88b7764b8 | |
parent | 4a8bedc51d980af052f9b243d1ba64e19f7e9946 (diff) | |
download | buildroot-9aaf13c91c16b520ac8a4c4d1f94296f56ee13f8.tar.gz buildroot-9aaf13c91c16b520ac8a4c4d1f94296f56ee13f8.zip |
bzip2: install shared library for the host
libbz2.so was explicitly built for the host, but was not installed. Install it.
Signed-off-by: David Bachelart <david.bachelart@bbright.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/bzip2/bzip2.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/bzip2/bzip2.mk b/package/bzip2/bzip2.mk index fcddb55e5f..7584694802 100644 --- a/package/bzip2/bzip2.mk +++ b/package/bzip2/bzip2.mk @@ -61,6 +61,8 @@ endef define HOST_BZIP2_INSTALL_CMDS $(HOST_MAKE_ENV) \ $(MAKE) PREFIX=$(HOST_DIR)/usr -C $(@D) install + $(HOST_MAKE_ENV) \ + $(MAKE) -f Makefile-libbz2_so PREFIX=$(HOST_DIR)/usr -C $(@D) install endef $(eval $(generic-package)) |