X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fext2fs%2FMakefile;h=69700ed54bb5bdc941b66adab03f6f9a9dc1c46f;hb=2fa2282b6ffc52cc3c76352da364197de26b0e06;hp=f10adbb6c3c237ee1db28d919d6cb717d3857838;hpb=f52d66ff00b24111f87c274d3d7085ef2e1d27b1;p=openwrt-10.03%2F.git diff --git a/tools/ext2fs/Makefile b/tools/ext2fs/Makefile index f10adbb6c..69700ed54 100644 --- a/tools/ext2fs/Makefile +++ b/tools/ext2fs/Makefile @@ -16,8 +16,6 @@ PKG_SOURCE_URL:=@SF/$(PKG_NAME) PKG_MD5SUM:=664431bf6737df1c265500e1f0b5d40c PKG_CAT:=zcat -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) - include $(INCLUDE_DIR)/host-build.mk define Build/Configure @@ -43,17 +41,16 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ - CFLAGS="-O2 -I $(STAGING_DIR)/include-host -include getline.h" \ + CFLAGS="$(HOST_CFLAGS) -include getline.h" \ all endef define Build/Install - mkdir -p $(STAGING_DIR)/bin - install -m0755 $(PKG_BUILD_DIR)/genext2fs $(STAGING_DIR)/bin/ + install -m0755 $(PKG_BUILD_DIR)/genext2fs $(STAGING_DIR_HOST)/bin/ endef define Build/Clean - rm -f $(STAGING_DIR)/bin/genext2fs + rm -f $(STAGING_DIR_HOST)/bin/genext2fs endef $(eval $(call HostBuild))