From c8a47bf6621b8d23608d9e09da7296c289a13355 Mon Sep 17 00:00:00 2001 From: Gunter Knauf Date: Thu, 28 Jun 2007 22:31:18 +0000 Subject: [PATCH] revert previous patch since it turned out that older cp dont know this switch, argh! --- tests/testcurl.pl | 6 +++--- 1 file 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"); }