You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2010/10/09 00:01:23 UTC

svn commit: r1006046 - in /ofbiz/trunk/debian: changelog move-files.pl

Author: doogie
Date: Fri Oct  8 22:01:22 2010
New Revision: 1006046

URL: http://svn.apache.org/viewvc?rev=1006046&view=rev
Log:
Skip rc.ofbiz.for.debian file and .pc dirs, so they don't get installed
anymore.

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

Modified: ofbiz/trunk/debian/changelog
URL: http://svn.apache.org/viewvc/ofbiz/trunk/debian/changelog?rev=1006046&r1=1006045&r2=1006046&view=diff
==============================================================================
--- ofbiz/trunk/debian/changelog (original)
+++ ofbiz/trunk/debian/changelog Fri Oct  8 22:01:22 2010
@@ -22,6 +22,8 @@ ofbiz (UNRELEASED) unstable; urgency=low
   * Fix description of ofbiz package, so that it says 'meta-package', instead
     of 'pseudo-package'.  The former is used by lintian to skip the no-files
     warning.
+  * Skip rc.ofbiz.for.debian file and .pc dirs, so they don't get installed
+    anymore.
 
  -- Adam Heath <do...@brainfood.com>  UNRELEASED
 

Modified: ofbiz/trunk/debian/move-files.pl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/debian/move-files.pl?rev=1006046&r1=1006045&r2=1006046&view=diff
==============================================================================
--- ofbiz/trunk/debian/move-files.pl (original)
+++ ofbiz/trunk/debian/move-files.pl Fri Oct  8 22:01:22 2010
@@ -56,6 +56,7 @@ ij.ofbiz
 KEYS
 APACHE2_HEADER
 rc.ofbiz
+rc.ofbiz.for.debian
 );
 #startofbiz.sh
 
@@ -103,7 +104,7 @@ while (<FIND>) {
 	next if (m,^$appDirsRe/[^/]+/(build/classes|src|testdef)/.*,);
 	next if (m,^$appDirsRe/[^/]+/build/lib/[^/]+-test\.jar$,);
 	next if (m,^runtime/(catalina/work|data/derby|logs)/.*,);
-	next if (m,^\.hg(|/.*),);
+	next if (m,^\.(hg|pc)(|/.*),);
 	#print("2\n");
 	my $type = undef;
 	if ($_ eq 'framework/entity/config/entityengine.xml') {