From 76eb0950b8d82b1e9617b9c854f091e13bb23131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 2 Jun 2015 22:55:52 +0300 Subject: [PATCH] configure: Don't run "export $e" for an empty string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the side effect of printing the whole environment, if no --env parameter was provided. Signed-off-by: Martin Storsjö --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 2458adb6b8..1ed89561b3 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