File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,18 @@ Configure the kernel, but don't build it.
65
65
cc = '{} {}' .format (ccache , gcc )
66
66
else :
67
67
cc = gcc
68
+ if args .verbose :
69
+ verbose = ['V=1' ]
70
+ else :
71
+ verbose = []
68
72
common_make_args = [
69
73
'make' , common .Newline ,
70
74
'-j' , str (args .nproc ), common .Newline ,
71
75
'ARCH={}' .format (common .linux_arch ), common .Newline ,
72
76
'CROSS_COMPILE={}' .format (prefix ), common .Newline ,
73
77
'CC={}' .format (cc ), common .Newline ,
74
78
'O={}' .format (build_dir ), common .Newline ,
75
- ]
76
- if args .verbose :
77
- verbose = ['V=1' ]
78
- else :
79
- verbose = []
79
+ ] + verbose
80
80
if args .custom_config_file is not None :
81
81
if not os .path .exists (args .custom_config_file ):
82
82
raise Exception ('config fragment file does not exist: {}' .format (args .custom_config_file ))
You can’t perform that action at this time.
0 commit comments