diff options
author | Kirill A. Shutemov <kirill@shutemov.name> | 2010-12-13 20:10:28 +0300 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-12-15 00:16:19 +0300 |
commit | f6820308e025d645d9d766c97586badd4ddb8754 (patch) | |
tree | eb5349e0634a67ea388d921f6061480b186de94d /scripts | |
parent | 8990c1bc4be46473ad19bf2fa612ca57286f3df4 (diff) | |
download | linux-f6820308e025d645d9d766c97586badd4ddb8754.tar.xz |
kbuild: introduce HDR_ARCH_LIST for headers_install_all
Using HDR_ARCH_LIST you can specify subset of architectures you want to get
headers for.
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/headers.sh b/scripts/headers.sh index 1ddcdd38d97f..978b42b3acd7 100755 --- a/scripts/headers.sh +++ b/scripts/headers.sh @@ -13,7 +13,7 @@ do_command() fi } -archs=$(ls ${srctree}/arch) +archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)} for arch in ${archs}; do case ${arch} in |