Lines Matching refs:useradd
709 my %useradd = (
776 #if (exists $useradd{$1})
778 # $useradd{$1} = [];
912 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
1001 push @{$useradd{LDLIBS}}, $_;
1005 push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
1009 push @{$useradd{LDFLAGS}}, $_;
1017 push @{$useradd{LDFLAGS}}, $_, $rpath;
1021 push @{$useradd{LDFLAGS}}, $_;
1025 push @{$useradd{CPPDEFINES}}, $1;
1029 push @{$useradd{CPPINCLUDES}}, $1;
1033 push @{$useradd{CPPFLAGS}}, $1;
1041 push @{$useradd{CFLAGS}}, $_;
1042 push @{$useradd{CXXFLAGS}}, $_;
1051 push @{$useradd{CFLAGS}}, $_;
1052 push @{$useradd{CXXFLAGS}}, $_;
1084 # If any %useradd entry has been set, we must check that the "make
1085 # variables" haven't been set. We start by checking of any %useradd entry
1087 if (grep { scalar @$_ > 0 } values %useradd) {
1090 # 2 - %useradd entry set
1095 $v += 2 if @{$useradd{$_}};
1097 keys %useradd;
1113 # flag or anything else that affects %useradd was set, we also check the
1116 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
1364 foreach (keys %useradd) {
1366 die "internal error: \$useradd{$_} isn't an ARRAY\n"
1367 unless ref $useradd{$_} eq 'ARRAY';
1370 push @{$config{$_}}, @{$useradd{$_}};
1372 $config{$_} = [ @{$useradd{$_}} ];
1375 # At this point, we can forget everything about %user and %useradd,