/[make]/make/tests/run_make_tests.pl
ViewVC logotype

Diff of /make/tests/run_make_tests.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by psmith, Wed Aug 31 13:38:17 2005 UTC revision 1.17 by psmith, Mon Oct 24 13:01:41 2005 UTC
# Line 253  sub set_more_defaults Line 253  sub set_more_defaults
253    
254     # Find the full pathname of Make.  For DOS systems this is more     # Find the full pathname of Make.  For DOS systems this is more
255     # complicated, so we ask make itself.     # complicated, so we ask make itself.
256     $make_path = `sh -c 'echo "all:;\@echo \\\$(MAKE)" | $make_path -f-'`;     my $mk = `sh -c 'echo "all:;\@echo \\\$(MAKE)" | $make_path -f-'`;
257     chop $make_path;     chop $mk;
258       $mk or die "FATAL ERROR: Cannot determine the value of \$(MAKE):\n
259    'echo \"all:;\@echo \\\$(MAKE)\" | $make_path -f-' failed!\n";
260       $make_path = $mk;
261     print "Make\t= `$make_path'\n" if $debug;     print "Make\t= `$make_path'\n" if $debug;
262    
263     $string = `$make_path -v -f /dev/null 2> /dev/null`;     $string = `$make_path -v -f /dev/null 2> /dev/null`;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26