[package] elfutils: do not package nor stage libelf for now

This is clashing with libs/libelf, and only 'perf' is using this version, so
until we resolve that clashing, do not build libelf from elfutils.

git-svn-id: svn://svn.openwrt.org/openwrt/packages@27866 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2011-08-01 18:16:00 +00:00
parent 66616a9024
commit 2ea26f5d21

View File

@ -27,11 +27,6 @@ define Package/elfutils/Default
URL:=https://fedorahosted.org/elfutils/
endef
define Package/libelf
$(call Package/elfutils/Default)
TITLE+= (libelf)
endef
define Package/libdw
$(call Package/elfutils/Default)
TITLE+= (libdw)
@ -46,19 +41,12 @@ define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/libelf/libelf.{a,so*} $(1)/usr/lib/
$(CP) $(PKG_BUILD_DIR)/libdw/libdw.{a,so*} $(1)/usr/lib/
endef
define Package/libelf/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/libelf/libelf.so* $(1)/usr/lib/
endef
define Package/libdw/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_BUILD_DIR)/libdw/libdw.so* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libdw))
$(eval $(call BuildPackage,libelf))