diff options
author | Felipe Pena <felipe@php.net> | 2011-12-01 16:40:07 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-12-01 16:40:07 +0000 |
commit | 37eba77f31779bf46c2e2fa1cfb460c086fca4ae (patch) | |
tree | 7cb5c23bf12536c637e496ea8b1812534def2f95 | |
parent | ae667a95b0e4ed00950bcf2c6a73f580967673c7 (diff) | |
download | php-git-37eba77f31779bf46c2e2fa1cfb460c086fca4ae.tar.gz |
- Escape [ ] chars in the configure message
Patch by: Daniel Convissor
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 41b6c522f6..5789119408 100644 --- a/configure.in +++ b/configure.in @@ -863,7 +863,7 @@ fi PHP_ARG_WITH(layout, layout of installed files, [ --with-layout=TYPE Set how installed files will be laid out. Type can - be either PHP or GNU [PHP]], PHP, no) + be either PHP or GNU @<:@PHP@:>@], PHP, no) case $PHP_LAYOUT in GNU) @@ -876,7 +876,7 @@ esac PHP_ARG_WITH(config-file-path, path to configuration file, [ --with-config-file-path=PATH - Set the path in which to look for php.ini [PREFIX/lib]], DEFAULT, no) + Set the path in which to look for php.ini @<:@PREFIX/lib@:>@], DEFAULT, no) if test "$PHP_CONFIG_FILE_PATH" = "DEFAULT"; then case $PHP_LAYOUT in @@ -1068,7 +1068,7 @@ if test "$PHP_CLI" = "no"; then fi PHP_ARG_WITH(pear, [whether to install PEAR], -[ --with-pear=DIR Install PEAR in DIR [PREFIX/lib/php] +[ --with-pear=DIR Install PEAR in DIR @<:@PREFIX/lib/php@:>@ --without-pear Do not install PEAR], DEFAULT, yes) if test "$PHP_PEAR" != "no"; then |