mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Change "head -1" to "sort q" as suggested for POSIX compatibility.
This commit is contained in:
parent
6eeb95f0f5
commit
cf6a73dedc
2 changed files with 2 additions and 2 deletions
2
configure
vendored
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…
Reference in a new issue