diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2012-08-07 11:29:03 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2012-08-07 11:29:03 +0300 |
commit | d6add031f1e63cc228cc5002df06a52c76479560 (patch) | |
tree | 9b1f81bf0f27f3f60671e010b75426b2d0f3894f /rpmrc.in | |
parent | 72621fcf32a6fa4fdda16f6b6729e7c6fe0943ea (diff) | |
download | librpm-tizen-d6add031f1e63cc228cc5002df06a52c76479560.tar.gz librpm-tizen-d6add031f1e63cc228cc5002df06a52c76479560.tar.bz2 librpm-tizen-d6add031f1e63cc228cc5002df06a52c76479560.zip |
Accept em64t architecture as an alias for x86_64 (RhBug:800489)
- Some vendors insist on calling their x86_64 packages "em64t" instead
of the more standard x86_64. Minimally support this naming convention
as those packages aren't going away anytime soon - be liberal in
what you accept and all, sigh.
Diffstat (limited to 'rpmrc.in')
-rw-r--r-- | rpmrc.in | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -130,6 +130,7 @@ arch_canon: i386: i386 1 arch_canon: x86_64: x86_64 1 arch_canon: amd64: amd64 1 arch_canon: ia32e: ia32e 1 +arch_canon: em64t: em64t 1 arch_canon: alpha: alpha 2 arch_canon: alphaev5: alphaev5 2 @@ -388,9 +389,9 @@ arch_compat: s390x: s390 noarch arch_compat: ia64: noarch -arch_compat: x86_64: amd64 athlon noarch -arch_compat: amd64: x86_64 athlon noarch -arch_compat: ia32e: x86_64 athlon noarch +arch_compat: x86_64: amd64 em64t athlon noarch +arch_compat: amd64: x86_64 em64t athlon noarch +arch_compat: ia32e: x86_64 em64t athlon noarch arch_compat: sh3: noarch arch_compat: sh4: noarch |