Author: jisom
Date: Wed Jan 18 07:49:40 2006
New Revision: 11243
Modified:
trunk/config/gen/makefiles/root.in
Log:
Fixed make svnclobber, was using the wrong var to unlink
Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in (original)
+++ trunk/config/gen/makefiles/root.in Wed Jan 18 07:49:40 2006
@@ -1558,7 +1558,7 @@ distclean : realclean
# Require .svn to exist first
# Otherwise it'll remove every last file
svnclobber : .svn
- $(PERL) -MFile::Find -e 'find(sub{unlink $$File::Find::name if -f and
not $$File::Find::name =~ m[/\.svn/] and not -e
".svn/text-base/$$_.svn-base";},".")'
+ $(PERL) -MFile::Find -e 'find(sub{unlink $$_ if -f and not
$$File::Find::name =~ m[/\.svn/] and not -e
".svn/text-base/$$_.svn-base";},".")'
reconfig : clean
$(PERL) Configure.pl --reconfig