Lines Matching refs:ARGV
93 while ($ARGV[0]) {
94 if ($ARGV[0] =~ /--target=/) {
95 $targetos = (split(/=/, shift @ARGV, 2))[1];
97 elsif ($ARGV[0] =~ /--setup=/) {
98 $setupfile = (split(/=/, shift @ARGV, 2))[1];
100 elsif ($ARGV[0] =~ /--extvercmd=/) {
101 $extvercmd = (split(/=/, shift @ARGV, 2))[1];
103 elsif ($ARGV[0] =~ /--mktarball=/) {
104 $mktarball = (split(/=/, shift @ARGV, 2))[1];
106 elsif ($ARGV[0] =~ /--name=/) {
107 $name = (split(/=/, shift @ARGV, 2))[1];
109 elsif ($ARGV[0] =~ /--email=/) {
110 $email = (split(/=/, shift @ARGV, 2))[1];
112 elsif ($ARGV[0] =~ /--desc=/) {
113 $desc = (split(/=/, shift @ARGV, 2))[1];
115 elsif ($ARGV[0] =~ /--notes=/) {
116 $notes = (split(/=/, shift @ARGV, 2))[1];
118 elsif ($ARGV[0] =~ /--configure=(.*)/) {
120 shift @ARGV;
122 elsif (($ARGV[0] eq "--nocvsup") || ($ARGV[0] eq "--nogitpull")) {
124 shift @ARGV;
126 elsif ($ARGV[0] =~ /--nobuildconf/) {
128 shift @ARGV;
130 elsif ($ARGV[0] =~ /--noconfigure/) {
132 shift @ARGV;
134 elsif ($ARGV[0] =~ /--crosscompile/) {
136 shift @ARGV;
138 elsif ($ARGV[0] =~ /--runtestopts=/) {
139 $runtestopts = (split(/=/, shift @ARGV, 2))[1];
142 $CURLDIR=shift @ARGV;