X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=tools%2Fgenext2fs%2FMakefile;h=a771f4c778afba8ec2b88524606e3f6af68dca68;hp=eef75ddec7c1a83d44c1307678ca75b0f88da4e6;hb=3df4ea71920381a95920f6ecd252e93fb2ca8c84;hpb=f6d79ced81e5fff18e83d28c59da8ba079c2ba54 diff --git a/tools/genext2fs/Makefile b/tools/genext2fs/Makefile index eef75ddec..a771f4c77 100644 --- a/tools/genext2fs/Makefile +++ b/tools/genext2fs/Makefile @@ -4,22 +4,20 @@ # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=genext2fs -PKG_VERSION:=1.4rc1 +PKG_VERSION:=1.4.1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://superb-west.dl.sourceforge.net/sourceforge/ -PKG_MD5SUM:=664431bf6737df1c265500e1f0b5d40c -PKG_CAT:=zcat +PKG_SOURCE_URL:=@SF/genext2fs +PKG_MD5SUM:=b7b6361bcce2cedff1ae437fadafe53b include $(INCLUDE_DIR)/host-build.mk -define Build/Configure - ( cd $(PKG_BUILD_DIR); \ +define Host/Configure + ( cd $(HOST_BUILD_DIR); \ ./configure \ --target=$(GNU_HOST_NAME) \ --host=$(GNU_HOST_NAME) \ @@ -39,17 +37,17 @@ define Build/Configure ) endef -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CFLAGS="$(HOST_CFLAGS) -include getline.h" \ +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) \ + CFLAGS="$(HOST_CFLAGS)" \ all endef -define Build/Install - install -m0755 $(PKG_BUILD_DIR)/genext2fs $(STAGING_DIR_HOST)/bin/ +define Host/Install + install -m0755 $(HOST_BUILD_DIR)/genext2fs $(STAGING_DIR_HOST)/bin/ endef -define Build/Clean +define Host/Clean rm -f $(STAGING_DIR_HOST)/bin/genext2fs endef