fprintf(stderr, "\n"
"***********************************************************\n"
" The existing menuselect.makeopts file did not specify \n"
- " that '%s' should not be included. However, either some \n"
- " dependencies for this module were not found or a \n"
- " conflict exists. \n"
+ " that '%s' should not be included. However, \n"
+ " %s%s\n"
+ " %s.\n"
" \n"
" Either run 'make menuselect' or remove the existing \n"
" menuselect.makeopts file to resolve this issue. \n"
"***********************************************************\n"
- "\n", mem->name);
+ "\n", mem->name,
+ mem->depsfailed ? "dependencies for this module were not found" : "",
+ mem->depsfailed && mem->conflictsfailed ? " and" : "",
+ mem->conflictsfailed ? "a conflict exists" : "");
insane = 1;
}
}