ask         01/09/20 22:03:18

  Modified:    .        Configure.pl
  Log:
  make the ivsize detection work for us normal people without . in our PATH.
  :-)
  
  Revision  Changes    Path
  1.14      +2 -2      parrot/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /home/perlcvs/parrot/Configure.pl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -w -r1.13 -r1.14
  --- Configure.pl      2001/09/21 04:44:54     1.13
  +++ Configure.pl      2001/09/21 05:03:18     1.14
  @@ -19,7 +19,7 @@
   );
   
   if($opt_version) {
  -     print '$Id: Configure.pl,v 1.13 2001/09/21 04:44:54 brentdax Exp $' . "\n";
  +     print '$Id: Configure.pl,v 1.14 2001/09/21 05:03:18 k 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 opsize nvsize)})=split('/', `./test$c{exe}`);
   unlink('test.c', "test$c{exe}");
   
   print <<"END";
  
  
  

Reply via email to