]> git.ipfire.org Git - thirdparty/squid.git/commit
Fix escaping leading regex dashes in ./configure sources (#1152)
authorAlex Rousskov <rousskov@measurement-factory.com>
Wed, 21 Sep 2022 13:53:22 +0000 (13:53 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Wed, 21 Sep 2022 18:26:26 +0000 (18:26 +0000)
commit55b3303d6fb2dec513a5db5d2dce9db1fd05423b
treea3f5a4a245b9e3ffb2dcb1c28449344534767a30
parent408ea1cf67645575e494066c1770c93ebbb95ce8
Fix escaping leading regex dashes in ./configure sources (#1152)

    grep: invalid option -- 't'
    Usage: grep [OPTION]... PATTERNS [FILE]...
    Try 'grep --help' for more information.

    Usage: grep [OPTION]... PATTERNS [FILE]...
    Try 'grep --help' for more information.
    ./configure: line 27524: test: too many arguments

    Usage: grep [OPTION]... PATTERNS [FILE]...
    Try 'grep --help' for more information.
    ./configure: line 27698: test: too many arguments

Configure scripts are written in m4, not shell. M4 treats [square
brackets] specially. We could use quadrigraphs instead (as documented in
autoconf manual) but `(-)` looks a lot simpler than `@<:@-@:>@`!
acinclude/krb5.m4
configure.ac