diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-04 00:03:48 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-04 00:03:48 +0000 |
commit | 3da959c768da30ecf9aa4da4c6277eaf734e96b5 (patch) | |
tree | 1f6587361e3da082b0f5fda1eaf8a9bfd89be366 /package/mtd/Makefile | |
parent | 2715a8953869e94da2b609352e2a45a5f35f5a18 (diff) |
link to specific header, just to be safe
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1841 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mtd/Makefile')
-rw-r--r-- | package/mtd/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/mtd/Makefile b/package/mtd/Makefile index bfbb301e4c..b2090a6e49 100644 --- a/package/mtd/Makefile +++ b/package/mtd/Makefile @@ -7,6 +7,10 @@ PKG_RELEASE := 1 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +ifeq ($(LINUX_VERSION),2.4.30) +VER=-DLINUX_24 +endif + include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH))) @@ -16,7 +20,7 @@ $(PKG_BUILD_DIR)/.prepared: touch $@ $(PKG_BUILD_DIR)/.built: - $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c + $(TARGET_CC) -I$(LINUX_DIR)/include $(VER) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c touch $@ $(IPKG_MTD): |