From 99354c0421776bcb3e833d8e7bb633e0eba5df47 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 13 Mar 2021 16:19:00 +0200 Subject: [PATCH 33/33] postgres.m4: Use $SED instead of hardcoded 'sed' See osdn #41773 Signed-off-by: Marko Lindqvist --- m4/postgres.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/postgres.m4 b/m4/postgres.m4 index b6b8581cbe..cab57abc6d 100644 --- a/m4/postgres.m4 +++ b/m4/postgres.m4 @@ -27,7 +27,7 @@ AC_DEFUN([FC_CHECK_POSTGRES], postgresql_cflags="-I`$PG_CONFIG --includedir`" postgresql_ldflags="-L`$PG_CONFIG --libdir` -lpq" - POSTGRESQL_VERSION=`$PG_CONFIG --version | sed -e 's#PostgreSQL ##'` + POSTGRESQL_VERSION=`$PG_CONFIG --version | $SED -e 's#PostgreSQL ##'` found_postgresql="yes" AC_MSG_RESULT([yes]) -- 2.30.1