From: Yang Tse <yangsita@gmail.com>
Date: Thu, 7 Aug 2008 20:41:12 +0000 (+0000)
Subject: Adjust testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
X-Git-Tag: cares-1_5_3~199
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7d52c414f09cf0b36b00f9b30f4d1ae94cb4025;p=curl

Adjust testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
for non-configure targets when host system doesn't run buildconf.bat.
---

diff --git a/CHANGES b/CHANGES
index b5ab4b713..bd1ef52e8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -20,6 +20,9 @@ Yang Tse (7 Aug 2008)
 
 - Skip data type check in DO_CURL_OFF_T_CHECK macro when argument is empty.
 
+- Adjusted testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
+  for non-configure targets when the host system doesn't run buildconf.bat.
+
 - Prevent buildconf from removing 'Makefile' and 'missing' files. This would
   blow away our CVS checked files 'missing' and 'hiper/Makefile'.
 
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index ece15e8b7..d18660377 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -489,6 +489,7 @@ if ($configurebuild) {
   elsif (($^O eq 'linux') || ($targetos =~ /netware/)) {
     system("cp -afr ../$CURLDIR/* ."); 
     system("cp -af ../$CURLDIR/Makefile.dist Makefile"); 
+    system("cp -af ../$CURLDIR/include/curl/curlbuild.h.dist include/curl/curlbuild.h");
     system("$make -i -C lib -f Makefile.$targetos prebuild");
     system("$make -i -C src -f Makefile.$targetos prebuild");
   }