aboutsummaryrefslogtreecommitdiff
path: root/tests/testcurl.pl
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-06-28 22:31:18 +0000
committerGunter Knauf <gk@gknw.de>2007-06-28 22:31:18 +0000
commitc8a47bf6621b8d23608d9e09da7296c289a13355 (patch)
tree8cd7456fb24a8f2eb54e67f17ef03174a9517bc1 /tests/testcurl.pl
parentaed0cc6f2a9a7fdaae08ad6700687f7200b4ebaa (diff)
revert previous patch since it turned out that older cp dont know this switch, argh!
Diffstat (limited to 'tests/testcurl.pl')
-rwxr-xr-xtests/testcurl.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index 8a3d7becb..b7828d32a 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -477,14 +477,14 @@ if ($configurebuild) {
mydie "configure didn't work";
}
} else {
- logit "Copying files to build dir...";
+ logit "copying files to build dir ...";
if (($^O eq 'MSWin32') && ($targetos !~ /netware/)) {
system("xcopy /s /q ..\\$CURLDIR .");
system("buildconf.bat");
}
elsif (($^O eq 'linux') || ($targetos =~ /netware/)) {
- system("cp -afr --no-preserve=ownership ../$CURLDIR/* .");
- system("cp -af --no-preserve=ownership ../$CURLDIR/Makefile.dist Makefile");
+ system("cp -afr ../$CURLDIR/* .");
+ system("cp -af ../$CURLDIR/Makefile.dist Makefile");
system("$make -i -C lib -f Makefile.$targetos prebuild");
system("$make -i -C src -f Makefile.$targetos prebuild");
}