diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-05 21:29:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 21:29:36 +0800 |
commit | e0ee0cc66a4416edd47232649f4d4bca4a5e3c07 (patch) | |
tree | 6437e23efe3c8e6bf2deb01324fcd2f94434decd | |
parent | bb2e99dfc213c4abda1e851802d4fd0194d800e5 (diff) | |
parent | 9b135a9c20284209c592cfa8f8f7f01820af7544 (diff) | |
download | go-tangerine-e0ee0cc66a4416edd47232649f4d4bca4a5e3c07.tar.gz go-tangerine-e0ee0cc66a4416edd47232649f4d4bca4a5e3c07.tar.zst go-tangerine-e0ee0cc66a4416edd47232649f4d4bca4a5e3c07.zip |
Merge pull request #3517 from karalabe/empty-ios-prefix
build: finally settle on empty iOS ObjC package prefixes
-rw-r--r-- | build/ci.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go index 867fc3732..593fcd151 100644 --- a/build/ci.go +++ b/build/ci.go @@ -792,7 +792,7 @@ func doXCodeFramework(cmdline []string) { // Build the iOS XCode framework build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile")) build.MustRun(gomobileTool("init")) - bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "--prefix", "i", "-v", "github.com/ethereum/go-ethereum/mobile") + bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "-v", "github.com/ethereum/go-ethereum/mobile") if *local { // If we're building locally, use the build folder and stop afterwards |