| Newsgroups |
perl.ponie.changes |
| Message-ID |
<[email protected]> |
Author: sky
Date: Thu Aug 21 02:57:26 2003
New Revision: 32
Modified:
trunk/Configure.pl
trunk/Makefile
Log:
Don't delete the entire enviroment, be a bit more carefull about rm
Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl (original)
+++ trunk/Configure.pl Thu Aug 21 02:57:26 2003
@@ -29,8 +29,6 @@
delete($ENV{'PERL5LIB'});
-local(%ENV);
-print Dumper(\%ENV);
unless(-e 'parrot/parrot') {
chdir('parrot');
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Thu Aug 21 02:57:26 2003
@@ -21,7 +21,7 @@
clean:
cd parrot && $(MAKE) clean
cd perl && $(MAKE) clean
- rm *~
+ rm -f *~
rm -f lib
rm -f ponie
@@ -33,7 +33,7 @@
cd perl && $(MAKE) realclean
rm -f perl/config.sh
rm -f perl/Policy.sh
- rm *~
+ rm -f *~
rm -f lib
rm -f ponie