aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2015-10-02 13:40:47 -0400
committerGreg Hudson <ghudson@mit.edu>2015-10-23 11:47:08 -0400
commitdf251bdfcd70ad16478342b088026b37a47d25fd (patch)
tree56d73a9dbbab11028f2874a3e29047d8c61fe413 /src/Makefile.in
parent9a6dcd4b56df245556e77b9b1db6a8c3f486cf9e (diff)
downloadkrb5-df251bdfcd70ad16478342b088026b37a47d25fd.zip
krb5-df251bdfcd70ad16478342b088026b37a47d25fd.tar.gz
krb5-df251bdfcd70ad16478342b088026b37a47d25fd.tar.bz2
Simplify RUN_ENV definition
In the shlib.conf definitions of RUN_ENV, instead of "var=value; export var;" use just "var=value", taking advantage of the Bourne shell's "var=value cmd args..." syntax. This syntax doesn't work with for loops, so adjust the few Makefile rules which iterate over $(RUN_VARS).
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 3233345..f16f319 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -555,7 +555,7 @@ testrealm: runenv.py
# environment variable settings to propagate to Python-based tests
pyrunenv.vals: Makefile
- $(RUN_SETUP) \
+ $(RUN_SETUP); \
for i in $(RUN_VARS); do \
eval echo 'env['\\\'$$i\\\''] = '\\\'\$$$$i\\\'; \
done > $@