Add musl C library support
- Project hosted at https://www.musl-libc.org/ Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
This commit is contained in:
parent
bec9845f05
commit
2525377e1a
2 changed files with 7 additions and 2 deletions
|
|
@ -89,8 +89,8 @@ directory with a specific structure:
|
|||
|
||||
It will then generate the other two variables upon calling the query
|
||||
command. For now, three projects are hard-coded into the shell script
|
||||
(to handle version grouping and display): Linux, U-Boot, Busybox and
|
||||
Zephyr.
|
||||
(to handle version grouping and display): Linux, U-Boot, Busybox,
|
||||
Musl and Zephyr.
|
||||
|
||||
Here is an example configuration for Apache:
|
||||
|
||||
|
|
|
|||
|
|
@ -92,6 +92,11 @@ case $cmd in
|
|||
tac |
|
||||
sed -r 's/^(v[0-9])\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
|
||||
;;
|
||||
musl)
|
||||
echo "$tags" |
|
||||
tac |
|
||||
sed -r 's/^(v[0-9])\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
|
||||
;;
|
||||
*)
|
||||
echo "$tags" |
|
||||
tac |
|
||||
|
|
|
|||
Loading…
Reference in a new issue