diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2012-09-20 15:06:14 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2012-09-20 15:06:14 +0200 |
commit | e8929eaaa28739010369ca36dd01f59f1a7a6e2d (patch) | |
tree | db7a761edba441c13cb548423afbcf5820eae354 /mk | |
parent | 26c1d961ea82dda2bb6875e01b1bd2855573f37b (diff) |
workaround for yeelong
Diffstat (limited to 'mk')
-rw-r--r-- | mk/build.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/build.mk b/mk/build.mk index b7bd4fae1..2f576ad41 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -366,11 +366,11 @@ endif ifeq ($(ADKtype),lemote-yeelong) @echo ADK_LINUX_NATIVE=y >> $(TOPDIR)/.defconfig @echo ADK_TARGET_SYSTEM_LEMOTE_YEELONG=y >> $(TOPDIR)/.defconfig - @sed -e "s#config ADK_TARGET#config ADK_NATIVE#" target/$(ARCH_FOR_BUILD)/sys-available/$(ADKtype) > \ - target/$(ARCH_FOR_BUILD)/sys-enabled/.$(ADKtype) + @sed -e "s#config ADK_TARGET#config ADK_NATIVE#" target/mips/sys-available/$(ADKtype) > \ + target/mips/sys-enabled/.$(ADKtype) @echo "choice" > $(TOPDIR)/target/config/Config.in.native @echo "prompt \"Target system (autodetected)\"" >> $(TOPDIR)/target/config/Config.in.native - @echo "source \"target/$(ARCH_FOR_BUILD)/sys-enabled/.$(ADKtype)\"" >> $(TOPDIR)/target/config/Config.in.native + @echo "source \"target/mips/sys-enabled/.$(ADKtype)\"" >> $(TOPDIR)/target/config/Config.in.native @echo "endchoice" >> $(TOPDIR)/target/config/Config.in.native endif @echo 'source "target/config/Config.in.arch.default"' > target/config/Config.in.arch |