Lines Matching refs:useradd
788 my %useradd = (
856 #if (exists $useradd{$1})
858 # $useradd{$1} = [];
1009 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
1122 push @{$useradd{LDLIBS}}, $_;
1126 push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
1130 push @{$useradd{LDFLAGS}}, $_;
1138 push @{$useradd{LDFLAGS}}, $_, $rpath;
1142 push @{$useradd{LDFLAGS}}, $_;
1146 push @{$useradd{CPPDEFINES}}, $1;
1150 push @{$useradd{CPPINCLUDES}}, $1;
1154 push @{$useradd{CPPFLAGS}}, $1;
1162 push @{$useradd{CFLAGS}}, $_;
1163 push @{$useradd{CXXFLAGS}}, $_;
1172 push @{$useradd{CFLAGS}}, $_;
1173 push @{$useradd{CXXFLAGS}}, $_;
1205 # If any %useradd entry has been set, we must check that the "make
1206 # variables" haven't been set. We start by checking of any %useradd entry
1208 if (grep { scalar @$_ > 0 } values %useradd) {
1211 # 2 - %useradd entry set
1216 $v += 2 if @{$useradd{$_}};
1218 keys %useradd;
1234 # flag or anything else that affects %useradd was set, we also check the
1237 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
1494 foreach (keys %useradd) {
1496 die "internal error: \$useradd{$_} isn't an ARRAY\n"
1497 unless ref $useradd{$_} eq 'ARRAY';
1500 push @{$config{$_}}, @{$useradd{$_}};
1502 $config{$_} = [ @{$useradd{$_}} ];
1505 # At this point, we can forget everything about %user and %useradd,