]> 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)
committerAmos Jeffries <yadij@users.noreply.github.com>
Wed, 7 Dec 2022 12:59:44 +0000 (01:59 +1300)
commitd1107aa54a75331d4af95755d0eea90b37a2667d
tree54cf866286d8e8b45f47ce8941ec65fb77bc6182
parent926d7c2962002a4793f37e5df15a6d3a3a7f86d4
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