glfw: Sort C files in alphabetical order

This commit is contained in:
Hajime Hoshi 2019-05-20 03:42:50 +09:00
parent f461ba2379
commit 289fb77d20
3 changed files with 7 additions and 2 deletions

View File

@ -21,6 +21,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
"sort"
"strings" "strings"
"golang.org/x/sync/errgroup" "golang.org/x/sync/errgroup"
@ -43,6 +44,10 @@ var srcs = []string{
"glfw/src/egl_context.c", "glfw/src/egl_context.c",
} }
func init() {
sort.Strings(srcs)
}
type arch string type arch string
const ( const (

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long