aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-18 23:02:09 -0500
committerWill Dietz <w@wdtz.org>2019-03-18 23:45:42 -0500
commit108ab954edb67736c67413ba8c3bcc3ada0015ae (patch)
treecef392ae53638daafcefae8726bc9fb8a2c3d41c /pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
parent9e39ab6753b6b6fafc73ebc8e70967084c507c17 (diff)
xorg: font utilities should be nativeBuildInputs
They provide programs executed by the builder.
Diffstat (limited to 'pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl')
-rwxr-xr-xpkgs/servers/x11/xorg/generate-expr-from-tarballs.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
index 58083d2701f3..dbbdca8493b3 100755
--- a/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
+++ b/pkgs/servers/x11/xorg/generate-expr-from-tarballs.pl
@@ -150,15 +150,15 @@ while (<>) {
}
if ($file =~ /AC_PATH_PROG\(BDFTOPCF/) {
- push @requires, "bdftopcf";
+ push @nativeRequires, "bdftopcf";
}
if ($file =~ /AC_PATH_PROG\(MKFONTSCALE/) {
- push @requires, "mkfontscale";
+ push @nativeRequires, "mkfontscale";
}
if ($file =~ /AC_PATH_PROG\(MKFONTDIR/) {
- push @requires, "mkfontscale";
+ push @nativeRequires, "mkfontscale";
}
if ($file =~ /AM_PATH_PYTHON/) {
@@ -174,17 +174,17 @@ while (<>) {
my $isFont;
if ($file =~ /XORG_FONT_BDF_UTILS/) {
- push @requires, "bdftopcf", "mkfontscale";
+ push @nativeRequires, "bdftopcf", "mkfontscale";
$isFont = 1;
}
if ($file =~ /XORG_FONT_SCALED_UTILS/) {
- push @requires, "mkfontscale";
+ push @nativeRequires, "mkfontscale";
$isFont = 1;
}
if ($file =~ /XORG_FONT_UCS2ANY/) {
- push @requires, "fontutil", "mkfontscale";
+ push @nativeRequires, "fontutil", "mkfontscale";
$isFont = 1;
}