Update git submodules

* Update liberasurecode from branch 'master'
  to 46f237a7e0be32ccd991f604dccd302cb591cd60
  - configure: use more idiomatic test command
    
    The autoconf manual warns against using the posix shell command `[ ... ]`:
    
    > The `test` program is the way to perform many file and string tests. It
    > is often invoked by the alternate name `[`, but using that name in
    > Autoconf code is asking for trouble since it is an M4 quote character.
    
    Using `[ foo = bar ]` is evaluated as `foo = bar` with m4-quoting
    resolved. Here, we used `[[ foo = bar ]]` instead, which superficially
    looks like a bashism, but is actually an m4 quote escape that resolves
    to `[ foo = bar ]`.
    
    Avoid the confusion by using the configure.ac standard for spelling
    `test`.
    
    Change-Id: I31dfa6ab4abb181159a4364900e6da24c929705f
This commit is contained in:
Eli Schwartz 2024-01-30 00:14:21 -05:00 committed by Gerrit Code Review
parent aaff5639df
commit 9f2da4b924
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit b9a8a5b0b8249ca63a785f092bdbb0e0402119fb
Subproject commit 46f237a7e0be32ccd991f604dccd302cb591cd60