]> git.draconx.ca Git - dxcommon.git/commit
Avoid nonportable ${x%%y} substitutions in DX_LINGUAS.
authorNick Bowler <nbowler@draconx.ca>
Tue, 9 Mar 2021 01:39:09 +0000 (20:39 -0500)
committerNick Bowler <nbowler@draconx.ca>
Tue, 9 Mar 2021 03:35:25 +0000 (22:35 -0500)
commit19bb62393cbee31cd377d4e9bd1b493ca91528bd
tree0d92f63fc15d7bb3498d54cc984bc262e6cf295f
parent65cd51576af61ad651c5f1546c4ded144017cfa4
Avoid nonportable ${x%%y} substitutions in DX_LINGUAS.

Using ${x%%y} substitutions is not portable: in particular it is
not supported by Solaris /bin/sh (or heirloom-sh).  Let's use a
more portable construct instead.
m4/linguas.m4