Skip to content

Commit

Permalink
[skip ci] Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
petk committed Jul 12, 2024
1 parent 3a7c96e commit 6004387
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build/php.m4
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ dnl CPPFLAGS, LIBS and LDFLAGS) to temporary variables. Optional "namespace" is
dnl a prefix for temporary variable names.
dnl
AC_DEFUN([PHP_PUSH],
[AS_VAR_COPY([$1_php_save_CFLAGS], [CFLAGS])
AS_VAR_COPY([$1_php_save_CPPFLAGS], [CPPFLAGS])
AS_VAR_COPY([$1_php_save_LDFLAGS], [LDFLAGS])
AS_VAR_COPY([$1_php_save_LIBS], [LIBS])])
[AS_VAR_COPY([$1_php_save_CFLAGS], [CFLAGS])
AS_VAR_COPY([$1_php_save_CPPFLAGS], [CPPFLAGS])
AS_VAR_COPY([$1_php_save_LDFLAGS], [LDFLAGS])
AS_VAR_COPY([$1_php_save_LIBS], [LIBS])])

dnl
dnl PHP_POP([namespace])
Expand All @@ -50,10 +50,10 @@ dnl last pushed state using PHP_PUSH. When using "namespace" it will restore the
dnl variables of the last PHP_PUSH([namespace]) call.
dnl
AC_DEFUN([PHP_POP],
[AS_VAR_COPY([CFLAGS], [$1_php_save_CFLAGS])
[AS_VAR_COPY([CFLAGS], [$1_php_save_CFLAGS])
AS_VAR_COPY([CPPFLAGS], [$1_php_save_CPPFLAGS])
AS_VAR_COPY([LDFLAGS], [$1_php_save_LDFLAGS])
AS_VAR_COPY([LIBS], [$1_php_save_LIBS])])
AS_VAR_COPY([LDFLAGS], [$1_php_save_LDFLAGS])
AS_VAR_COPY([LIBS], [$1_php_save_LIBS])])

dnl
dnl PHP_DEF_HAVE(what)
Expand Down

0 comments on commit 6004387

Please sign in to comment.