Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-01-22 00:32:58 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-26 21:56:40 +0300
commit7e857cd57108358531b62ba58daa79adf21878e5 (patch)
tree134a6ca4240ea958961a51edc5d18b54e0855bb4 /configure
parent7b6f4191763a5ffde02fa198101aabc3ddb5bf61 (diff)
configure: use ar and ranlib in deterministic mode
this makes the static libraries binary reproducible Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 9fcdaee2c8..7a70910c4d 100755
--- a/configure
+++ b/configure
@@ -2702,7 +2702,7 @@ ln_s="ln -s -f"
nm_default="nm -g"
objformat="elf"
pkg_config_default=pkg-config
-ranlib_default="ranlib"
+ranlib_default="ranlib -D"
strip_default="strip"
yasmexe_default="yasm"
windres_default="windres"
@@ -3601,7 +3601,7 @@ elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
arflags='-Xany -r -c'
ar_o='$@'
else
- arflags="rc"
+ arflags="Drc"
ar_o='$@'
fi