diff options
author | Gunter Knauf <gk@gknw.de> | 2007-06-28 22:31:18 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-06-28 22:31:18 +0000 |
commit | c8a47bf6621b8d23608d9e09da7296c289a13355 (patch) | |
tree | 8cd7456fb24a8f2eb54e67f17ef03174a9517bc1 | |
parent | aed0cc6f2a9a7fdaae08ad6700687f7200b4ebaa (diff) |
revert previous patch since it turned out that older cp dont know this switch, argh!
-rwxr-xr-x | tests/testcurl.pl | 6 |
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"); } |