Module: libav
Branch: master
Commit: 76eb0950b8d82b1e9617b9c854f091e13bb23131

Author:    Martin Storsjö <[email protected]>
Committer: Martin Storsjö <[email protected]>
Date:      Tue Jun  2 22:55:52 2015 +0300

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ö <[email protected]>

---

 configure |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 2458adb..1ed8956 100755
--- a/configure
+++ b/configure
@@ -2543,7 +2543,7 @@ for opt do
     esac
 done
 
-for e in "$env"; do
+for e in $env; do
     eval "export $e"
 done
 

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to