mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-11 06:27:03 +00:00
Added auto-hinter option; updated architecture configuration.
This commit is contained in:
parent
e6d3628aef
commit
35a0a044b3
@ -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 =
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user