2
0
mirror of synced 2025-02-24 07:18:15 +00:00

cmd/gomobile: use the correct case for the generated Universe.objc.h file

Fixes golang/go#28335

Change-Id: Ia6ef4a5e9c426d810770459632ab276eea9cab8f
GitHub-Last-Rev: 47d9c16539e6fd0e154d45e39248240650877356
GitHub-Pull-Request: golang/mobile#24
Reviewed-on: https://go-review.googlesource.com/c/144117
Reviewed-by: Elias Naur <elias.naur@gmail.com>
This commit is contained in:
Tadas V 2018-10-26 05:24:47 +00:00 committed by Elias Naur
parent 92f3b9caf7
commit a27dd33d35

View File

@ -53,7 +53,7 @@ func goIOSBind(gobind string, pkgs []*build.Package, archs []string) error {
for i, pkg := range pkgs {
fileBases[i] = bindPrefix + strings.Title(pkg.Name)
}
fileBases[len(fileBases)-1] = "universe"
fileBases[len(fileBases)-1] = "Universe"
cmd = exec.Command("xcrun", "lipo", "-create")