Author: doogie
Date: Fri Oct 8 22:13:33 2010
New Revision: 1006052
URL:
http://svn.apache.org/viewvc?rev=1006052&view=revLog:
Don't install framework/appserver/templates into the debian packages.
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=1006052&r1=1006051&r2=1006052&view=diff==============================================================================
--- ofbiz/trunk/debian/changelog (original)
+++ ofbiz/trunk/debian/changelog Fri Oct 8 22:13:33 2010
@@ -28,6 +28,7 @@ ofbiz (UNRELEASED) unstable; urgency=low
removed.
* Remove Apache-2.0 license text from copyright, instead referring to the
shared one in /usr/share/common-licenses.
+ * Skip framework/appserver/templates as well during install.
-- Adam Heath <
[hidden email]> UNRELEASED
Modified: ofbiz/trunk/debian/move-files.pl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/debian/move-files.pl?rev=1006052&r1=1006051&r2=1006052&view=diff==============================================================================
--- ofbiz/trunk/debian/move-files.pl (original)
+++ ofbiz/trunk/debian/move-files.pl Fri Oct 8 22:13:33 2010
@@ -104,6 +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,^framework/appserver/templates(|/.*)$,);
next if (m,^\.(hg|pc)(|/.*),);
#print("2\n");
my $type = undef;