Skip to content

Commit

Permalink
fix $Config{version}
Browse files Browse the repository at this point in the history
  • Loading branch information
book committed Dec 20, 2024
1 parent 073dd2b commit b104cb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -7119,9 +7119,9 @@ case "$osname" in
dos|vms)
: XXX Should be a Configure test for double-dots in filenames.
version=`echo $patchlevel $subversion | \
$awk '{ printf "%d_%d", $1, $2 }'`
$awk '{ printf "%d_%03d", $1, $2 }'`
api_versionstring=`echo $api_version $api_subversion | \
$awk '{ printf "%d_%d", $1, $2 }'`
$awk '{ printf "%d_%03d", $1, $2 }'`
;;
*)
version=`echo $patchlevel $subversion | \
Expand Down

0 comments on commit b104cb0

Please sign in to comment.