From 2ea26f5d219df102d1fb479e0f3cda3393efb199 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 1 Aug 2011 18:16:00 +0000 Subject: [PATCH] [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 --- libs/elfutils/Makefile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libs/elfutils/Makefile b/libs/elfutils/Makefile index 790e44f14..19b85c434 100644 --- a/libs/elfutils/Makefile +++ b/libs/elfutils/Makefile @@ -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))