diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-27 19:21:45 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-27 19:21:45 +0000 |
commit | 535b7c5e0fed9f06307b6fd72091d158b2b3d926 (patch) | |
tree | 3d7ff35333de9a64fcfba79150a58dcd9106fb0e /tests | |
parent | 217f7a7ea78a85ebbc4edfe0d3c0ee2eb0b78df2 (diff) |
Log MAKEFLAGS environment variable along with the others.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 6369e33c3..7168a8429 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -297,6 +297,7 @@ logit "CPPFLAGS = ".$ENV{CPPFLAGS}; logit "CFLAGS = ".$ENV{CFLAGS}; logit "LDFLAGS = ".$ENV{LDFLAGS}; logit "CC = ".$ENV{CC}; +logit "MAKEFLAGS = ".$ENV{MAKEFLAGS}; logit "target = ".$targetos; logit "version = $version"; # script version logit "date = $timestamp"; # When the test build starts |