瀏覽代碼

Fixed the am64 architecture issue in the deb

bart@bart 16 年之前
父節點
當前提交
3b99c686d5
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      configure.in
  2. 1 1
      platform/unix/make-package

+ 1 - 1
configure.in

@@ -1,4 +1,4 @@
-AC_INIT([love], [20090904-513ad0afed0c])
+AC_INIT([love], [20090906-6a275e4b909a])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR([platform/unix])
 AC_CONFIG_MACRO_DIR([platform/unix/m4])

+ 1 - 1
platform/unix/make-package

@@ -5,7 +5,7 @@ echo
 
 arch="i386"
 
-if [ -n "`uname -m | grep -c -G x86_64`" ]; then
+if [ "`uname -m | grep -c -G x86_64`" != 0 ]; then
 	arch="amd64"
 fi