diff options
author | Martin Storsjö <martin@martin.st> | 2015-06-02 22:55:52 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-06-03 15:27:42 +0300 |
commit | 76eb0950b8d82b1e9617b9c854f091e13bb23131 (patch) | |
tree | 445d06938dd98b135f8c97aeea718e9d88afad0a /configure | |
parent | 876d441fbe37c3ffc57ada9ce1f9ea841ca4c9de (diff) | |
download | ffmpeg-76eb0950b8d82b1e9617b9c854f091e13bb23131.tar.gz |
configure: Don't run "export $e" for an empty string
This fixes the side effect of printing the whole environment,
if no --env parameter was provided.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2543,7 +2543,7 @@ for opt do esac done -for e in "$env"; do +for e in $env; do eval "export $e" done |