svn commit: r902017 - /ofbiz/trunk/debian/move-files.pl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r902017 - /ofbiz/trunk/debian/move-files.pl

doogie-3
Author: doogie
Date: Fri Jan 22 07:37:00 2010
New Revision: 902017

URL: http://svn.apache.org/viewvc?rev=902017&view=rev
Log:
Birt has some directories that end with .css, so protect the css
conffile management with a -f test.

Modified:
    ofbiz/trunk/debian/move-files.pl

Modified: ofbiz/trunk/debian/move-files.pl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/debian/move-files.pl?rev=902017&r1=902016&r2=902017&view=diff
==============================================================================
--- ofbiz/trunk/debian/move-files.pl (original)
+++ ofbiz/trunk/debian/move-files.pl Fri Jan 22 07:37:00 2010
@@ -107,7 +107,7 @@
  my $type = undef;
  if ($_ eq 'framework/entity/config/entityengine.xml') {
  $type = 'ucf';
- } elsif (m,(^|.*/)[^/]+\.css$,) {
+ } elsif (-f m,(^|.*/)[^/]+\.css$,) {
  $type = 'conffile';
  } elsif (m,^$appDirsRe/[^/]+/webapp/.*/WEB-INF/(controller|web|regions)\.xml$,) {
  $type = 'conffile';