mirror of
https://github.com/curl/curl.git
synced 2026-04-15 06:21:40 +03:00
Revert last change since it breaks running the test suite
when builddir is different from srcdir.
This commit is contained in:
parent
8f1829d1d2
commit
3daa54d636
5 changed files with 12 additions and 12 deletions
|
|
@ -4,7 +4,7 @@ use strict;
|
|||
|
||||
my $verbose=0; # set to 1 for debugging
|
||||
|
||||
my $srcdir=".";
|
||||
my $dir=".";
|
||||
my $port = 8999; # just a default
|
||||
my $ipv6;
|
||||
my $pid=".http.pid"; # name of the pidfile
|
||||
|
|
@ -14,7 +14,7 @@ do {
|
|||
$verbose=1;
|
||||
}
|
||||
elsif($ARGV[0] eq "-d") {
|
||||
$srcdir=$ARGV[1];
|
||||
$dir=$ARGV[1];
|
||||
shift @ARGV;
|
||||
}
|
||||
elsif($ARGV[0] eq "-p") {
|
||||
|
|
@ -33,4 +33,4 @@ do {
|
|||
}
|
||||
} while(shift @ARGV);
|
||||
|
||||
exec("$srcdir/server/sws --pidfile $pid$fork $ipv6$port $srcdir");
|
||||
exec("server/sws --pidfile $pid$fork $ipv6$port $dir");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue