From: David Bachelart Date: Thu, 10 Jul 2014 12:00:26 +0000 (+0200) Subject: bzip2: install shared library for the host X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9aaf13c91c16b520ac8a4c4d1f94296f56ee13f8;p=buildroot.git 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 Acked-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- 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))