diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-04-14 22:45:18 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2010-04-15 11:53:55 +0530 |
commit | 378934707c81b2394e62034e0f56c9a4c3c40562 (patch) | |
tree | 97fd18d7810e57f0d1e49cb0473673bc8f47001c /scripts | |
parent | gen-archlist: Fix corner case in get_best_dep() (diff) | |
download | gnome-378934707c81b2394e62034e0f56c9a4c3c40562.tar.gz gnome-378934707c81b2394e62034e0f56c9a4c3c40562.tar.bz2 gnome-378934707c81b2394e62034e0f56c9a4c3c40562.zip |
gen-archlist: Fix typo in UNSTABLE_ARCHES list
* m68k -> ~m68k
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_archlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 56b3c5df..52cd19a4 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -32,7 +32,7 @@ import portage portage.portdb.porttrees = [portage.settings['PORTDIR']] STABLE_ARCHES = ('alpha', 'amd64', 'arm', 'hppa', 'ia64', 'm68k', 'ppc', 'ppc64', 's390', 'sh', 'sparc', 'x86') -UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~hppa', '~ia64', 'm68k', '~ppc', +UNSTABLE_ARCHES = ('~alpha', '~amd64', '~arm', '~hppa', '~ia64', '~m68k', '~ppc', '~ppc64', '~s390', '~sh', '~sparc', '~x86', '~x86-fbsd') ALL_ARCHES = STABLE_ARCHES+UNSTABLE_ARCHES SYSTEM_PACKAGES = [] |