Allow build.monolithic to search subdirectories.
Uses `find' rather than `echo' to get a list of all source files within the module directory. The list is passed to sort. Allows subdirectories using the nnn_name notation to be included in the correct order.
This commit is contained in:
parent
2d542ba184
commit
61e8d27edd
8 changed files with 10 additions and 10 deletions
|
|
@ -8,7 +8,7 @@ MONOLITHIC_TESTS="src/@NAME@/build.module src/@NAME@/build.monolithic"
|
|||
|
||||
if [ -z "${@CNAME@_MONOLITHIC}" ]
|
||||
then
|
||||
MONOLITHIC_SOURCE="$(echo src/@NAME@/*.c)"
|
||||
MONOLITHIC_SOURCE="$(find src/@NAME@/ -name '*.c' | sort)"
|
||||
make_monolithic ${SRC} C || return 1
|
||||
|
||||
@CNAME@_MONOLITHIC=1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue