diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-04-14 16:28:18 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-04-14 16:28:18 +0000 |
commit | a2457665070d609a457d68c1eeb051b12bf43531 (patch) | |
tree | 8f947ad8a6e96c1e2b45aef817882d9d33c093ed | |
parent | b8e09787fac3a13854e53e3a7a6707d39563ae68 (diff) | |
download | upstream-a2457665070d609a457d68c1eeb051b12bf43531.tar.gz upstream-a2457665070d609a457d68c1eeb051b12bf43531.tar.bz2 upstream-a2457665070d609a457d68c1eeb051b12bf43531.zip |
move ldconfig & ldd to utils section
SVN-Revision: 15228
-rw-r--r-- | package/base-files/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 4326c972ed..093bf5b984 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -117,12 +117,16 @@ $(call Package/libc/Default) endef define Package/ldd -$(call Package/uclibc/Default) +$(call Package/libc/Default) + SECTION:=utils + CATEGORY:=Utilities TITLE:=LDD trace utility endef define Package/ldconfig $(call Package/libc/Default) + SECTION:=utils + CATEGORY:=Utilities TITLE:=Shared library path configuration endef |