diff options
| author | Jeevan Shriram <jshriram@codeaurora.org> | 2018-03-29 12:21:40 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-06-23 00:21:35 -0700 |
| commit | 655fbb94c53181d02301bcfb67069705d5bb1b6e (patch) | |
| tree | e7a8575950ce74a1744bd51532708f94ee6d1c0f /scripts/build-all.py | |
| parent | cfcf36aeff347519bbc5f4436b1d4a77e89f316d (diff) | |
scripts: build-all.py: update regex to compile all defconfigs
Update regex to populate all sdm*_defconfig and compile with build-all
script.
Change-Id: Ia4aa0f6b684b647b173f0ca18e6979fb0d957149
Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
[schikk@codeaurora.org: resolve trivial merge conflicts]
Signed-off-by: Swetha Chikkaboraiah <schikk@codeaurora.org>
Diffstat (limited to 'scripts/build-all.py')
| -rwxr-xr-x | scripts/build-all.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build-all.py b/scripts/build-all.py index 61ee2b9aaa55..c95dae202d14 100755 --- a/scripts/build-all.py +++ b/scripts/build-all.py @@ -312,11 +312,11 @@ def scan_configs(): r'apq*_defconfig', r'qsd*_defconfig', r'mpq*_defconfig', - r'sdm[0-9]*_defconfig', + r'sdm*_defconfig', ) arch64_pats = ( r'msm*_defconfig', - r'sdm[0-9]*_defconfig', + r'sdm*_defconfig', ) for p in arch_pats: for n in glob.glob('arch/arm/configs/' + p): |
