aboutsummaryrefslogtreecommitdiff
path: root/tests/testcurl.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-08-08 12:34:01 +0000
committerYang Tse <yangsita@gmail.com>2008-08-08 12:34:01 +0000
commitf01d18e4b9c7fdfb4c106667f354033eb96fc77b (patch)
tree0ad7f2013c157ff0ffebb005421a4c2c8f41d41a /tests/testcurl.pl
parentdabd3cd355ecd8aba2dd6351d225e9c9d950807a (diff)
Reintroduce the adjustment previously done in testcurl.pl so that it copies the
CVS checked out curlbuild.h.dist as curlbuild.h for any non-configure target when host system is not running buildconf.bat. All the curlbuild.h stuff was done taking in consideration that no adjustment would be needed in non-configure makefiles. As it is documented, when trying to build on non-configure capable systems or on systems which for any reason don't run the true configure script, it is required to have the proper curlbuild.h in place before calling any makefile. Due to the hardcore memory debugging stuff c-ares enabled debug builds also need the file in the proper place before attempting to build c-ares.
Diffstat (limited to 'tests/testcurl.pl')
-rwxr-xr-xtests/testcurl.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index 79ff7769a..63246a8f1 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -489,7 +489,7 @@ if ($configurebuild) {
elsif (($^O eq 'linux') || ($targetos =~ /netware/)) {
system("cp -afr ../$CURLDIR/* .");
system("cp -af ../$CURLDIR/Makefile.dist Makefile");
- # lib/Makefile.netware now copies curlbuild.h.dist as curlbuild.h
+ 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");
}