From: Daniel Stenberg Date: Wed, 8 May 2024 21:50:55 +0000 (+0200) Subject: managen: fix the option sort order X-Git-Tag: curl-8_8_0~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a95fd864042cb70d7e2c3a9d0cb46154634ca6b1;p=thirdparty%2Fcurl.git managen: fix the option sort order ... it used to strip off the .d file extension to sort correctly but ever since the extension changed to .md the operation failed and the sort got wrong. Follow-up to 2494b8dd5175cee7f2e Closes #13567 --- diff --git a/scripts/managen b/scripts/managen index 2c5423a6a9..8f16783982 100755 --- a/scripts/managen +++ b/scripts/managen @@ -984,7 +984,7 @@ sub listglobals { sub noext { my $in = $_[0]; - $in =~ s/\.d//; + $in =~ s/\.md//; return $in; }