[FFmpeg-cvslog] configure: Move add_fooflags() helper functions into canonical order
Diego Biurrun
git at videolan.org
Mon Sep 3 00:04:55 EEST 2018
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sat Oct 21 00:43:15 2017 +0200| [39f3b6f3fc2b46b405b680cce3599f1b370e342d] | committer: Diego Biurrun
configure: Move add_fooflags() helper functions into canonical order
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=39f3b6f3fc2b46b405b680cce3599f1b370e342d
---
configure | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/configure b/configure
index f5f726f6b5..20a839c1d9 100755
--- a/configure
+++ b/configure
@@ -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 "$@"
}
More information about the ffmpeg-cvslog
mailing list