mirror of https://github.com/hak5/openwrt-owl.git
package/grub: add a prereq check for 32 bits host development files when building on x86_64 (closes: #7753)
SVN-Revision: 22667owl
parent
28d879da88
commit
8386207f1f
|
@ -88,5 +88,16 @@ define Package/grub/install
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifeq ($(HOST_ARCH),x86_64)
|
||||||
|
define Require/working-gcc-m32
|
||||||
|
echo 'int main(int argc, char **argv) { return 0; }' | \
|
||||||
|
gcc -x c -o $(TMP_DIR)/a.out - -m32 -lc
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(eval $(call Require,working-gcc-m32, \
|
||||||
|
Please install 32 bits development files. (gcc-multilib on Debian/Ubuntu, gcc.i686 and libgcc.i686 on CentOS/Fedora/RHEL) \
|
||||||
|
))
|
||||||
|
|
||||||
$(eval $(call HostBuild))
|
$(eval $(call HostBuild))
|
||||||
$(eval $(call BuildPackage,grub))
|
$(eval $(call BuildPackage,grub))
|
||||||
|
|
Loading…
Reference in New Issue