commit: fd36541a22f8673961bdf64358c94da079d782d3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 13:18:20 2016 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sat Mar 5 23:31:09 2016 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=fd36541a
GentooGetArch: default to amd64 rather than x86
plugin/gentoo-common.vim | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/gentoo-common.vim b/plugin/gentoo-common.vim
index 402c901..99bc29d 100644
--- a/plugin/gentoo-common.vim
+++ b/plugin/gentoo-common.vim
@@ -47,7 +47,7 @@ fun! GentooGetArch()
let l:a = substitute(l:a, "^\\s\\+", "", "")
let l:a = substitute(l:a, "\\s.*", "", "")
if l:a == ""
- let l:a = "x86"
+ let l:a = "amd64"
endif
let g:gentooarch = l:a
return g:gentooarch