From 1aeec5f7813f8c7b1d1cbb298b523fcbbcedaeb1 Mon Sep 17 00:00:00 2001 From: dtucker Date: Tue, 18 Jan 2005 01:45:42 +0000 Subject: [PATCH] - (dtucker) [survey.sh.in] Remove any blank lines from the output of ccver-v and ccver-V. --- ChangeLog | 2 ++ survey.sh.in | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bdc03ae3..288664d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ configure parameters, platform and platform features to the development team, which will allow (among other things) better targetting of testing. It's entirely voluntary and is off be default. ok djm@ + - (dtucker) [survey.sh.in] Remove any blank lines from the output of + ccver-v and ccver-V. 20041220 - (dtucker) [ssh-rand-helper.c] Fall back to command-based seeding if reading diff --git a/survey.sh.in b/survey.sh.in index 6a0c08df..4123b6d1 100644 --- a/survey.sh.in +++ b/survey.sh.in @@ -55,9 +55,9 @@ echo "ldflags: $LDFLAGS" echo echo "libs: $LIBS" echo -echo "ccver-v: `$CC -v 2>&1`" +echo "ccver-v: `$CC -v 2>&1 | sed '/^[ \t]*$/d'`" echo -echo "ccver-V: `$CC -V 2>&1`" +echo "ccver-V: `$CC -V 2>&1 | sed '/^[ \t]*$/d'`" echo echo "cppdefines:" ${CPP} -dM -