From: Ezra Peisach Date: Tue, 7 Oct 1997 12:05:06 +0000 (+0000) Subject: * Makefile.in (runenv.vars): Use tr to remove newlines in multiple X-Git-Tag: krb5-1.1-beta1~1014 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8d1139fc3289e3a28384f0cb625177bd576a157b;p=krb5.git * Makefile.in (runenv.vars): Use tr to remove newlines in multiple lines of variables. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10211 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/tests/dejagnu/ChangeLog b/src/tests/dejagnu/ChangeLog index e30adc713..a0e52c43b 100644 --- a/src/tests/dejagnu/ChangeLog +++ b/src/tests/dejagnu/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 7 08:02:13 1997 Ezra Peisach + + * Makefile.in (runenv.vars): Use tr to remove newlines in multiple + lines of variables. + Fri Oct 3 02:26:45 1997 Tom Yu * Makefile.in: Fix up site.exp generation to reduce the quoting diff --git a/src/tests/dejagnu/Makefile.in b/src/tests/dejagnu/Makefile.in index 7d45af0cf..6a75a5f4e 100644 --- a/src/tests/dejagnu/Makefile.in +++ b/src/tests/dejagnu/Makefile.in @@ -39,5 +39,5 @@ runenv.vals: runenv.vars eval echo "{$$i=\$$$$i}"; done > runenv.vals site.exp: runenv.vals - echo "set runvarlist [list `cat runenv.vals`]" | \ + echo "set runvarlist [list `cat runenv.vals | tr '\n' ' '`]" | \ sed -e 's%=\.%='`pwd`'/.%g' > site.exp