Commit f939bf58 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '604abd02'

* commit '604abd02':
  configure: Provide an option to override the environment

Conflicts:
	configure
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents cec34562 604abd02
...@@ -328,6 +328,7 @@ Toolchain options: ...@@ -328,6 +328,7 @@ Toolchain options:
--enable-pic build position-independent code --enable-pic build position-independent code
--enable-thumb compile for Thumb instruction set --enable-thumb compile for Thumb instruction set
--enable-lto use link-time optimization --enable-lto use link-time optimization
--env="ENV=override" override the environment variables
Advanced options (experts only): Advanced options (experts only):
--malloc-prefix=PREFIX prefix malloc and related names with PREFIX --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
...@@ -1979,6 +1980,7 @@ CMDLINE_SET=" ...@@ -1979,6 +1980,7 @@ CMDLINE_SET="
cxx cxx
dep_cc dep_cc
doxygen doxygen
env
extra_version extra_version
gas gas
host_cc host_cc
...@@ -3077,6 +3079,10 @@ for opt do ...@@ -3077,6 +3079,10 @@ for opt do
esac esac
done done
for e in "$env"; do
eval "export $e"
done
disabled logging && logfile=/dev/null disabled logging && logfile=/dev/null
echo "# $0 $FFMPEG_CONFIGURATION" > $logfile echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment