Change "head -1" to "sort q" as suggested for POSIX compatibility.

ecpg_big_bison
Bruce Momjian 24 years ago
parent 6eeb95f0f5
commit cf6a73dedc
  1. 2
      configure
  2. 2
      configure.in

2
configure vendored

@ -1629,7 +1629,7 @@ fi
# Create compiler version string
if test x"$GCC" = x"yes" ; then
cc_string="GCC `${CC} --version | head -1`"
cc_string="GCC `${CC} --version | sed q`"
else
cc_string=$CC
fi

@ -297,7 +297,7 @@ AC_SUBST(GCC)
# Create compiler version string
if test x"$GCC" = x"yes" ; then
cc_string="GCC `${CC} --version | head -1`"
cc_string="GCC `${CC} --version | sed q`"
else
cc_string=$CC
fi

Loading…
Cancel
Save