Browse Source

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>
tags/n2.7
Martin Storsjö 10 years ago
parent
commit
76eb0950b8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -2543,7 +2543,7 @@ for opt do
esac
done

for e in "$env"; do
for e in $env; do
eval "export $e"
done



Loading…
Cancel
Save