Show
Ignore:
Timestamp:
03/20/04 13:10:15 (5 years ago)
Author:
patrickh
Message:

When generating the 'reconfig' script, ensure that the same Perl binary is
used to re-run configure.pl as was used to run it the first time. This is
helpful on platforms where multiple versions of Perl may be installed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/juggler/configure.pl

    r14356 r14519  
    550550 
    551551   print RECONFIG "rm -f config.cache\n"; 
    552    print RECONFIG "exec $0 ", "@arg_list \n"; 
     552 
     553   # Print the command to run this script again.  The actual output will be 
     554   # the exec shell command followed by the full path to the Perl 
     555   # interpreter used to run this script; the same path to the script that 
     556   # the user entered; and the full argument list given on the command line. 
     557   print RECONFIG "exec $^X $0 ", "@arg_list \n"; 
    553558   close(RECONFIG); 
    554559   chmod(0755, "reconfig");