diff --git a/britney.conf b/britney.conf index 8ac7481..b018846 100644 --- a/britney.conf +++ b/britney.conf @@ -17,10 +17,10 @@ ARCHITECTURES = i386 sparc alpha powerpc arm m68k hppa ia64 mips mipsel s390 NOBREAKALL_ARCHES = i386 # if you're in this list, your packages may not stay in sync with the source -FUCKED_ARCHES = m68k sparc +FUCKED_ARCHES = m68k # if you're in this list, your uninstallability count may increase -BREAK_ARCHES = m68k sparc +BREAK_ARCHES = m68k # if you're in this list, you are a new architecture NEW_ARCHES = diff --git a/britney.py b/britney.py index bcfffff..c0d0bb7 100644 --- a/britney.py +++ b/britney.py @@ -304,6 +304,8 @@ class Britney: help="disable all outputs to the testing directory") self.parser.add_option("", "--compatible", action="store_true", dest="compatible", default=False, help="enable full compatibility with old britney's output") + self.parser.add_option("", "--auto-hinter", action="store_true", dest="autohinter", default=False, + help="enable use of auto-hinter") self.parser.add_option("", "--control-files", action="store_true", dest="control_files", default=False, help="enable control files generation") self.parser.add_option("", "--nuninst-cache", action="store_true", dest="nuninst_cache", default=False, @@ -2446,7 +2448,7 @@ class Britney: hintcnt += 1 # run the auto hinter - if not self.options.compatible: + if not self.options.compatible or self.options.autohinter: self.auto_hinter() # smooth updates