Lines Matching refs:useradd
589 my %useradd = (
658 #if (exists $useradd{$1})
660 # $useradd{$1} = [];
775 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
857 push @{$useradd{LDLIBS}}, $_;
861 push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
865 push @{$useradd{LDFLAGS}}, $_;
873 push @{$useradd{LDFLAGS}}, $_, $rpath;
877 push @{$useradd{LDFLAGS}}, $_;
881 push @{$useradd{CPPDEFINES}}, $1;
885 useradd{CPPINCLUDES}}, $1;
889 push @{$useradd{CPPFLAGS}}, $1;
897 push @{$useradd{CFLAGS}}, $_;
898 push @{$useradd{CXXFLAGS}}, $_;
907 push @{$useradd{CFLAGS}}, $_;
908 push @{$useradd{CXXFLAGS}}, $_;
944 # If any %useradd entry has been set, we must check that the "make
945 # variables" haven't been set. We start by checking of any %useradd entry
947 if (grep { scalar @$_ > 0 } values %useradd) {
950 # 2 - %useradd entry set
955 $v += 2 if @{$useradd{$_}};
957 keys %useradd;
973 # flag or anything else that affects %useradd was set, we also check the
976 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
1190 foreach (keys %useradd) {
1192 die "internal error: \$useradd{$_} isn't an ARRAY\n"
1193 unless ref $useradd{$_} eq 'ARRAY';
1196 push @{$config{$_}}, @{$useradd{$_}};
1198 $config{$_} = [ @{$useradd{$_}} ];
1201 # At this point, we can forget everything about %user and %useradd,