File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -1933,14 +1933,17 @@ static int sanity_check(void)
1933
1933
fprintf (stderr , "\n"
1934
1934
"***********************************************************\n"
1935
1935
" The existing menuselect.makeopts file did not specify \n"
1936
- " that '%s' should not be included. However, either some \n"
1937
- " dependencies for this module were not found or a \n"
1938
- " conflict exists. \n"
1936
+ " that '%s' should not be included. However, \n"
1937
+ " %s%s \n"
1938
+ " %s. \n"
1939
1939
" \n"
1940
1940
" Either run 'make menuselect' or remove the existing \n"
1941
1941
" menuselect.makeopts file to resolve this issue. \n"
1942
1942
"***********************************************************\n"
1943
- "\n" , mem -> name );
1943
+ "\n" , mem -> name ,
1944
+ mem -> depsfailed ? "dependencies for this module were not found" : "" ,
1945
+ mem -> depsfailed && mem -> conflictsfailed ? " and" : "" ,
1946
+ mem -> conflictsfailed ? "a conflict exists" : "" );
1944
1947
insane = 1 ;
1945
1948
}
1946
1949
}
You can’t perform that action at this time.
0 commit comments