diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-08-24 11:22:57 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-08-24 11:22:57 +0000 |
commit | fa3d3f60227179ffe733cbfeb354eba3ed118630 (patch) | |
tree | 7a79eecfb58e06554392b1aab58439089a58704b | |
parent | b176f181a108a1375f11c38f6719cdd4a625a7bd (diff) | |
download | upstream-fa3d3f60227179ffe733cbfeb354eba3ed118630.tar.gz upstream-fa3d3f60227179ffe733cbfeb354eba3ed118630.tar.bz2 upstream-fa3d3f60227179ffe733cbfeb354eba3ed118630.zip |
fix rt2x00 build
SVN-Revision: 8476
-rw-r--r-- | package/rt2x00/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/rt2x00/Makefile b/package/rt2x00/Makefile index faff0c91e1..f3197f37d0 100644 --- a/package/rt2x00/Makefile +++ b/package/rt2x00/Makefile @@ -113,7 +113,10 @@ define Build/Prepare endef define Build/Compile - $(MAKE) -C "$(PKG_BUILD_DIR)" config_header + $(MAKE) -C "$(PKG_BUILD_DIR)" \ + KERNDIR="$(LINUX_DIR)" \ + config_header + $(MAKE) -C "$(LINUX_DIR)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ ARCH="$(LINUX_KARCH)" V="$(V)" \ |