X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/6db7ad74f61eeaae0c8ecb08d483599d9d80c53f..e7c233e67e59de139afd7b25fc590513a5563ddd:/package/base-files/Makefile diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 9b8478dfc..313710187 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -104,6 +104,16 @@ $(call Package/uclibc/Default) TITLE:=C library embedded systems endef +define Package/ldd +$(call Package/uclibc/Default) + TITLE:=LDD trace utility +endef + +define Package/ldconfig +$(call Package/uclibc/Default) + TITLE:=Shared library path configuration +endef + define Build/Prepare mkdir -p $(PKG_BUILD_DIR) endef @@ -193,12 +203,12 @@ endef define Package/ldd/install $(INSTALL_DIR) $(1)/bin/ - $(CP) $(TOOLCHAIN_DIR)/utils/ldd $(1)/bin/ + $(CP) $(TOOLCHAIN_DIR)/target-utils/ldd $(1)/bin/ endef define Package/ldconfig/install $(INSTALL_DIR) $(1)/bin/ - $(CP) $(TOOLCHAIN_DIR)/utils/ldconfig $(1)/bin/ + $(CP) $(TOOLCHAIN_DIR)/target-utils/ldconfig $(1)/bin/ endef ifneq ($(DUMP),1) @@ -211,3 +221,5 @@ $(eval $(call BuildPackage,libssp)) $(eval $(call BuildPackage,libstdcpp)) $(eval $(call BuildPackage,libpthread)) $(eval $(call BuildPackage,uclibc)) +$(eval $(call BuildPackage,ldd)) +$(eval $(call BuildPackage,ldconfig))