configure: Move add_fooflags() helper functions into canonical order

This commit is contained in:
Diego Biurrun 2017-10-21 00:43:15 +02:00
parent 5691c746cf
commit 39f3b6f3fc
1 changed files with 8 additions and 8 deletions

16
configure vendored
View File

@ -718,14 +718,14 @@ add_cflags_headers(){
append CFLAGS_HEADERS $($cflags_filter "$@")
}
add_asflags(){
append ASFLAGS $($asflags_filter "$@")
}
add_objcflags(){
append OBJCFLAGS $($objcflags_filter "$@")
}
add_asflags(){
append ASFLAGS $($asflags_filter "$@")
}
add_ldflags(){
append LDFLAGS $($ldflags_filter "$@")
}
@ -738,14 +738,14 @@ add_ldsoflags(){
append LDSOFLAGS $($ldflags_filter "$@")
}
add_stripflags(){
append STRIPFLAGS "$@"
}
add_extralibs(){
prepend extralibs $($ldflags_filter "$@")
}
add_stripflags(){
append STRIPFLAGS "$@"
}
add_host_cppflags(){
append host_cppflags "$@"
}