| Index: chrome/installer/mac/app/SystemInfo.m
|
| diff --git a/chrome/installer/mac/app/SystemInfo.m b/chrome/installer/mac/app/SystemInfo.m
|
| index 66e3cf81962c12967dc75298ea677ccf59038368..364fe79fb31c3992388bc7fe07fcf9b0e43c794c 100644
|
| --- a/chrome/installer/mac/app/SystemInfo.m
|
| +++ b/chrome/installer/mac/app/SystemInfo.m
|
| @@ -9,6 +9,8 @@
|
| @implementation SystemInfo
|
|
|
| + (NSString*)getArch {
|
| + // NOTE: It seems the below function `NSGetLocalArchInfo` returns an
|
| + // arch->name that is either "x84_64h" or "i486".
|
| const NXArchInfo* arch = NXGetLocalArchInfo();
|
| NSString* archName = [NSString stringWithUTF8String:arch->name];
|
| return archName;
|
|
|