cvsuser     01/09/21 12:18:32

  Modified:    .        Configure.pl
  Log:
  Fix typo in setting stuff from the C test program
  
  Revision  Changes    Path
  1.15      +2 -2      parrot/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /home/perlcvs/parrot/Configure.pl,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -w -r1.14 -r1.15
  --- Configure.pl      2001/09/21 05:03:18     1.14
  +++ Configure.pl      2001/09/21 19:18:32     1.15
  @@ -19,7 +19,7 @@
   );
   
   if($opt_version) {
  -     print '$Id: Configure.pl,v 1.14 2001/09/21 05:03:18 k Exp $' . "\n";
  +     print '$Id: Configure.pl,v 1.15 2001/09/21 19:18:32 brentdax Exp $' . "\n";
        exit;
   }
   
  @@ -134,7 +134,7 @@
   
   buildfile("test_c");
   system("$c{cc} $c{ccflags} -o test$c{exe} test.c") and die "C compiler died!";
  -(@c{qw(ivsize opsize nvsize)})=split('/', `./test$c{exe}`);
  +(@c{qw(ivsize longsize nvsize)})=split('/', `./test$c{exe}`);
   unlink('test.c', "test$c{exe}");
   
   print <<"END";
  
  
  

Reply via email to