Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kbuild: Correctly deal with make options which contain an "s"
When using remake, which is based on gnumake, if you invoke an example build as shown below, the build will become silent due to the top level make file incorrectly guessing that the end user wants a silent build because an argument that contained an "s" was used. Here are two examples one with remake and one with straight gnumake. remake --no-extended-errors make --warn-undefined-variables Fix up the top level Makefile to use filter to parse the options that mean silent instead of findstring catching other random arguments containing an "s". Signed-off-by: Jason Wessel <[email protected]> CC: Michal Marek <[email protected]> CC: Andrew Morton <[email protected]> CC: [email protected] Signed-off-by: Michal Marek <[email protected]>
- Loading branch information