diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-08-25 15:52:31 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-08-25 15:52:31 +0000 |
commit | 10e9a5e0722eb56f89e12be0801ec6b16c9ce2ed (patch) | |
tree | 0eaa37fbb7bb4d415286960eb9e3d35ae973adfb /package/e2fsprogs | |
parent | 6980fc88b71f122809412a109f7444b463209488 (diff) | |
download | upstream-10e9a5e0722eb56f89e12be0801ec6b16c9ce2ed.tar.gz upstream-10e9a5e0722eb56f89e12be0801ec6b16c9ce2ed.tar.bz2 upstream-10e9a5e0722eb56f89e12be0801ec6b16c9ce2ed.zip |
e2fsprogs fixes:
- don't bundle libblkid shared lib in e2fsprogs, add a dependency instead
- remove references to host dev files in pkgconfig files
- add Build/UninstallDev
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8486 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/e2fsprogs')
-rw-r--r-- | package/e2fsprogs/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile index 633b555127..9192650c47 100644 --- a/package/e2fsprogs/Makefile +++ b/package/e2fsprogs/Makefile @@ -22,7 +22,7 @@ define Package/e2fsprogs SECTION:=utils CATEGORY:=Utilities TITLE:=Ext2/3 filesystem utilities - DEPENDS:=+libuuid + DEPENDS:=+libblkid +libuuid DESCRIPTION:=\ This package contains essential ext2 filesystem utilities which consists of \\\ e2fsck, mke2fs, debugfs, dumpe2fs, tune2fs, and most of the other core ext2 \\\ @@ -92,6 +92,15 @@ define Build/InstallDev BUILDCC="$(HOSTCC)" \ DESTDIR="$(STAGING_DIR)" \ install-libs + $(SED) 's,-I$$$${includedir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/{blkid,com_err,e2p,ext2fs,ss,uuid}.pc + $(SED) 's,-L$$$${libdir},,g' $(STAGING_DIR)/usr/lib/pkgconfig/{blkid,com_err,e2p,ext2fs,ss,uuid}.pc +endef + +define Build/UninstallDev + -$(MAKE) -C $(PKG_BUILD_DIR) \ + BUILDCC="$(HOSTCC)" \ + DESTDIR="$(STAGING_DIR)" \ + uninstall-libs endef define Package/e2fsprogs/install @@ -101,7 +110,7 @@ define Package/e2fsprogs/install ln -sf mke2fs $(1)/usr/sbin/mkfs.ext2 ln -sf mke2fs $(1)/usr/sbin/mkfs.ext3 $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(foreach lib,blkid com_err e2p ext2fs,$(PKG_INSTALL_DIR)/usr/lib/lib$(lib).so.*) $(1)/usr/lib/ + $(CP) $(foreach lib,com_err e2p ext2fs,$(PKG_INSTALL_DIR)/usr/lib/lib$(lib).so.*) $(1)/usr/lib/ endef define Package/libuuid/install |