From: Marc G. Fournier Date: Tue, 4 Feb 1997 09:16:08 +0000 (+0000) Subject: Fix for echo newline suppression detection X-Git-Tag: REL6_1~600 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4aff83181a1b43522d62c99901a2958b637b8124;p=thirdparty%2Fpostgresql.git Fix for echo newline suppression detection Submitted by: Keith Parks --- diff --git a/src/configure b/src/configure index 03a27f65676..888e255b461 100755 --- a/src/configure +++ b/src/configure @@ -919,7 +919,7 @@ if test "$ECHO_N_OUT" -eq 0; then else if test "ECHO_C_OUT" -eq 0; then DASH_N= - BACKSLASH_C= '\\\\c' + BACKSLASH_C='\\\\c' else { echo "configure: error: "echo behaviour undetermined"" 1>&2; exit 1; } fi diff --git a/src/configure.in b/src/configure.in index 4851baca3c0..53ed959b7d7 100644 --- a/src/configure.in +++ b/src/configure.in @@ -82,7 +82,7 @@ if test "$ECHO_N_OUT" -eq 0; then else if test "ECHO_C_OUT" -eq 0; then DASH_N= - BACKSLASH_C= '\\\\c' + BACKSLASH_C='\\\\c' else AC_MSG_ERROR("echo behaviour undetermined") fi