Skip to content

Commit 42c5f5d

Browse files
committed
Autotools: Fix config.status script syntax
The init-cmds argument is appended to the config.status script with cat command and variables $var are replaced during the cat step to their values, so quoting these values fixes the syntax errors. Fixes report in phpGH-14872
1 parent 33928a0 commit 42c5f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/apache2handler/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ AC_CONFIG_COMMANDS([apache2handler], [AS_VAR_IF([enable_zts], [yes],,
124124
| PHP with --enable-zts |
125125
+--------------------------------------------------------------------+
126126
])])])],
127-
[APACHE_THREADED_MPM=$APACHE_THREADED_MPM; enable_zts=$enable_zts])
127+
[APACHE_THREADED_MPM="$APACHE_THREADED_MPM"; enable_zts="$enable_zts"])
128128
fi

0 commit comments

Comments
 (0)