diff options
author | John Crispin <john@openwrt.org> | 2011-07-04 11:21:37 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-07-04 11:21:37 +0000 |
commit | ad250089aa5d3152774f87941606837c3534f6bd (patch) | |
tree | 13fd06291a8501af5a7a3ef97a429a2a620f850e /include/target.mk | |
parent | 04fefa4a2860d33c16434859a7a2b182eb8406e5 (diff) | |
download | upstream-ad250089aa5d3152774f87941606837c3534f6bd.tar.gz upstream-ad250089aa5d3152774f87941606837c3534f6bd.tar.bz2 upstream-ad250089aa5d3152774f87941606837c3534f6bd.zip |
allow targets to define a default subtarget when using automatic subtarget detection from r27407
SVN-Revision: 27444
Diffstat (limited to 'include/target.mk')
-rw-r--r-- | include/target.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/target.mk b/include/target.mk index cfd7c9f3c3..af3230925c 100644 --- a/include/target.mk +++ b/include/target.mk @@ -215,6 +215,7 @@ define BuildTargets/DumpCurrent echo 'Linux-Version: $(LINUX_VERSION)'; \ echo 'Linux-Release: $(LINUX_RELEASE)'; \ echo 'Linux-Kernel-Arch: $(LINUX_KARCH)'; \ + $(if $(SUBTARGET),,$(if $(DEFAULT_SUBTARGET), echo 'Default-Subtarget: $(DEFAULT_SUBTARGET)'; )) echo 'Target-Description:'; \ $(SH_FUNC) getvar $(call shvar,Target/Description); \ echo '@@'; \ |