cvsuser     02/02/05 05:15:39

  Modified:    .        Configure.pl
  Log:
  Placate Tru64.
  
  Revision  Changes    Path
  1.91      +3 -3      parrot/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /cvs/public/parrot/Configure.pl,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -w -r1.90 -r1.91
  --- Configure.pl      31 Jan 2002 21:46:36 -0000      1.90
  +++ Configure.pl      5 Feb 2002 13:15:38 -0000       1.91
  @@ -2,7 +2,7 @@
   #
   # Configure.pl
   #
  -# $Id: Configure.pl,v 1.90 2002/01/31 21:46:36 gregor Exp $
  +# $Id: Configure.pl,v 1.91 2002/02/05 13:15:38 simon Exp $
   #
   # Author: Brent Dax
   #
  @@ -76,7 +76,7 @@
   
   if($opt_version) {
       print "Parrot Version $parrot_version Configure\n";
  -    print '$Id: Configure.pl,v 1.90 2002/01/31 21:46:36 gregor Exp $' . "\n";
  +    print '$Id: Configure.pl,v 1.91 2002/02/05 13:15:38 simon Exp $' . "\n";
       exit;
   }
   
  @@ -878,7 +878,7 @@
       my $cmd = "$c{cc} $c{ccflags} -I./include -c $c{ld_out} $name$c{o} $name.c";
       system($cmd) and die "C compiler died!  Command was '$cmd'\n";
   
  -    $cmd = "$c{ld} $c{ldflags} $c{libs} $name$c{o} $c{cc_exe_out}$name$c{exe}";
  +    $cmd = "$c{ld} $c{ldflags} $name$c{o} $c{cc_exe_out}$name$c{exe} $c{libs}";
       system($cmd) and die "Linker died!  Command was '$cmd'\n";
   }
   
  
  
  


Reply via email to