diff options
| author | Ezra Peisach <epeisach@mit.edu> | 1997-10-07 12:05:06 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 1997-10-07 12:05:06 +0000 |
| commit | 8d1139fc3289e3a28384f0cb625177bd576a157b (patch) | |
| tree | 65b9c0b8c830f376ea4741879082a2654c12c21e /src/tests | |
| parent | 879947925300a23ba12910d6c6f830293752e2f2 (diff) | |
| download | krb5-8d1139fc3289e3a28384f0cb625177bd576a157b.tar.gz krb5-8d1139fc3289e3a28384f0cb625177bd576a157b.tar.xz krb5-8d1139fc3289e3a28384f0cb625177bd576a157b.zip | |
* 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
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/dejagnu/ChangeLog | 5 | ||||
| -rw-r--r-- | src/tests/dejagnu/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
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 <epeisach@mit.edu> + + * Makefile.in (runenv.vars): Use tr to remove newlines in multiple + lines of variables. + Fri Oct 3 02:26:45 1997 Tom Yu <tlyu@mit.edu> * 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 |
