cvsuser 01/09/21 16:46:42
Modified: . Configure.pl
Log:
Delete test.o (or its equivalent) after Configure's test program finishes.
Revision Changes Path
1.16 +2 -2 parrot/Configure.pl
Index: Configure.pl
===================================================================
RCS file: /home/perlcvs/parrot/Configure.pl,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -w -r1.15 -r1.16
--- Configure.pl 2001/09/21 19:18:32 1.15
+++ Configure.pl 2001/09/21 23:46:42 1.16
@@ -19,7 +19,7 @@
);
if($opt_version) {
- print '$Id: Configure.pl,v 1.15 2001/09/21 19:18:32 brentdax Exp $' . "\n";
+ print '$Id: Configure.pl,v 1.16 2001/09/21 23:46:42 brentdax Exp $' . "\n";
exit;
}
@@ -135,7 +135,7 @@
buildfile("test_c");
system("$c{cc} $c{ccflags} -o test$c{exe} test.c") and die "C compiler died!";
(@c{qw(ivsize longsize nvsize)})=split('/', `./test$c{exe}`);
-unlink('test.c', "test$c{exe}");
+unlink('test.c', "test$c{exe}", "test$c{o}");
print <<"END";