Skip to content

Commit e5fcd13

Browse files
committed
Use the recommended $(...) instead of the obsolete backticks
1 parent 1028be0 commit e5fcd13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/php.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,8 +1964,8 @@ dnl Set installation PostgreSQL directory if given from configure argument.
19641964
done
19651965
], [
19661966
AC_MSG_RESULT([$PG_CONFIG])
1967-
PGSQL_INCLUDE=`$PG_CONFIG --includedir`
1968-
PGSQL_LIBDIR=`$PG_CONFIG --libdir`
1967+
PGSQL_INCLUDE=$($PG_CONFIG --includedir)
1968+
PGSQL_LIBDIR=$($PG_CONFIG --libdir)
19691969
])
19701970
19711971
AS_IF([test -z "$PGSQL_INCLUDE" || test -z "PGSQL_LIBDIR"], [found_pgsql=no], [

0 commit comments

Comments
 (0)