diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-07 00:04:25 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-07 00:04:25 +0000 |
commit | 12c49b6a6adbbcb0c7a19119c8a8c94b5f025f79 (patch) | |
tree | 9cda5ecf22a01d8a2ac22cd1a6510d51dfd5f3c3 /tools/ext2fs/Makefile | |
parent | 17453f9ace6001138259af04d4c4d5bfbe4e4dd5 (diff) |
build system cleanup/restructuring as described in http://lists.openwrt.org/pipermail/openwrt-devel/2007-August/001159.html
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8362 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/ext2fs/Makefile')
-rw-r--r-- | tools/ext2fs/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/ext2fs/Makefile b/tools/ext2fs/Makefile index f10adbb6c3..69700ed54b 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)) |