summaryrefslogtreecommitdiff
path: root/devel/ckmake
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-05-06 14:54:26 -0700
committerJohannes Berg <johannes.berg@intel.com>2013-05-07 15:23:37 +0200
commit10d6bc48634c2bde0ed409b2ff61bd4175d84d30 (patch)
treefecaa3e44a57942dbae630d40e5b0baa22f50804 /devel/ckmake
parentf503ea7b7b92aaaaf55ca0c4b915cb045a5b3442 (diff)
ckmake: make --check-exports default
Remove --check-exports as an option and now just enable it by default. Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com> [fix typo] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'devel/ckmake')
-rwxr-xr-xdevel/ckmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/devel/ckmake b/devel/ckmake
index 0b738e5a..bb81eb49 100755
--- a/devel/ckmake
+++ b/devel/ckmake
@@ -180,7 +180,7 @@ def process_kernel(num, kset, cmdline_args):
log_file.close()
status = p.returncode
- if status == 0 and cmdline_args.check_exports:
+ if status == 0:
warn = re.compile('^WARNING:.*undefined.*')
log_file = open(log_file_name, 'r')
for l in log_file:
@@ -413,8 +413,6 @@ if __name__ == "__main__":
help='Build allyesconfig rather than only backport code.')
parser.add_argument('--defconfig', metavar='<name>', type=str,
help='Build this defconfig rather than only backport code.')
- parser.add_argument('--check-exports', const=True, default=False, action="store_const",
- help='Check for linker warnings indicating exported symbols are missing.')
args = parser.parse_args()
if not os.path.exists(modules):