Lines Matching refs:ARGV
91 while ($ARGV[0]) {
92 if ($ARGV[0] =~ /--target=/) {
93 $targetos = (split(/=/, shift @ARGV, 2))[1];
95 elsif ($ARGV[0] =~ /--setup=/) {
96 $setupfile = (split(/=/, shift @ARGV, 2))[1];
98 elsif ($ARGV[0] =~ /--extvercmd=/) {
99 $extvercmd = (split(/=/, shift @ARGV, 2))[1];
101 elsif ($ARGV[0] =~ /--mktarball=/) {
102 $mktarball = (split(/=/, shift @ARGV, 2))[1];
104 elsif ($ARGV[0] =~ /--name=/) {
105 $name = (split(/=/, shift @ARGV, 2))[1];
107 elsif ($ARGV[0] =~ /--email=/) {
108 $email = (split(/=/, shift @ARGV, 2))[1];
110 elsif ($ARGV[0] =~ /--desc=/) {
111 $desc = (split(/=/, shift @ARGV, 2))[1];
113 elsif ($ARGV[0] =~ /--notes=/) {
114 $notes = (split(/=/, shift @ARGV, 2))[1];
116 elsif ($ARGV[0] =~ /--configure=(.*)/) {
118 shift @ARGV;
120 elsif (($ARGV[0] eq "--nocvsup") || ($ARGV[0] eq "--nogitpull")) {
122 shift @ARGV;
124 elsif ($ARGV[0] =~ /--nobuildconf/) {
126 shift @ARGV;
128 elsif ($ARGV[0] =~ /--noconfigure/) {
130 shift @ARGV;
132 elsif ($ARGV[0] =~ /--crosscompile/) {
134 shift @ARGV;
136 elsif ($ARGV[0] =~ /--runtestopts=/) {
137 $runtestopts = (split(/=/, shift @ARGV, 2))[1];
140 $CURLDIR=shift @ARGV;