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 | f25cd709d414bf2d4630f7a32fb43a556e9d8dd6 (patch) | |
tree | 349826e721bb71abd20c6ce4122961824469c5e1 /package/base-files/Makefile | |
parent | c589671d129135b59cda5bdb4f9212506a718337 (diff) | |
download | upstream-f25cd709d414bf2d4630f7a32fb43a556e9d8dd6.tar.gz upstream-f25cd709d414bf2d4630f7a32fb43a556e9d8dd6.tar.bz2 upstream-f25cd709d414bf2d4630f7a32fb43a556e9d8dd6.zip |
move ldconfig & ldd to utils section
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15228 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/Makefile')
-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 |