瀏覽代碼

Corrected architecture output from x86_64 to x64.

Signed-off-by: Rodolfo Silva <rodolfo@grupomarinho.com.br>
Rodolfo Silva 7 年之前
父節點
當前提交
a49f62a6cd
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      linux/installer/common/psw/createTarball.sh
  2. 1 1
      linux/installer/common/sdk/createTarball.sh

+ 1 - 1
linux/installer/common/psw/createTarball.sh

@@ -48,7 +48,7 @@ rm -fr ${INSTALL_PATH}
 get_arch()
 {
     local a=$(readelf -h $BUILD_DIR/sgx_sign | sed -n '2p' | awk '/:/{print $6}')
-    test $a = 02 && echo 'x86_64' || echo 'x86'
+    test $a = 02 && echo 'x64' || echo 'x86'
 }
 
 ARCH=$(get_arch)

+ 1 - 1
linux/installer/common/sdk/createTarball.sh

@@ -48,7 +48,7 @@ rm -fr ${INSTALL_PATH}
 get_arch()
 {
     local a=$(readelf -h $BUILD_DIR/sgx_sign | sed -n '2p' | awk '/:/{print $6}')
-    test $a = 02 && echo 'x86_64' || echo 'x86'
+    test $a = 02 && echo 'x64' || echo 'x86'
 }
 
 ARCH=$(get_arch)