Skip to content

Commit

Permalink
Makefile.PL: disable T1 and FT1 by default
Browse files Browse the repository at this point in the history
This can be overridden with --disable=none
  • Loading branch information
tonycoz committed Nov 10, 2023
1 parent cddb904 commit e7a2431
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ if (@enable && @disable) {
print STDERR "Only --enable or --disable can be used, not both, try --help\n";
exit 1;
}
if (!@enable && !@disable) {
@disable = qw(T1 FT1);
}

my %definc;
my %deflib;
Expand Down

0 comments on commit e7a2431

Please sign in to comment.