cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 75087ce65f54c86d44ce13bb63e1041226a53f7b
parent ac86b2f9fece0e39be57b81e02cb9946a10df570
Author: Cédric Hannotier <cedric.hannotier@ulb.be>
Date:   Thu, 29 Oct 2020 22:59:55 +0100

{var//pattern/replacement} is not POSIX compliant

Diffstat:
Mconfig.sh | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config.sh b/config.sh @@ -144,11 +144,11 @@ run_configure() { all: ${all} EOF - - for target in $all + + for target in $(printf '%s\n' $all | tr '.' '_') do - ${target//./_} >>"$outdir"/config.mk - done + $target + done >>"$outdir"/config.mk echo done touch $outdir/cppcache