[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

CVS:oo-deb/debian rules,1.146,1.147



Update of /cvs/debian-openoffice/oo-deb/debian
In directory gluck:/tmp/cvs-serv5259

Modified Files:
	rules 
Log Message:
Simplify MANIFEST generation pipeline


Index: rules
===================================================================
RCS file: /cvs/debian-openoffice/oo-deb/debian/rules,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -d -r1.146 -r1.147
--- rules	16 Oct 2003 12:53:14 -0000	1.146
+++ rules	17 Oct 2003 08:08:56 -0000	1.147
@@ -705,7 +705,10 @@
 	umask 022
 	
 	# compare manifests
-	(cd debian/tmp && find -type f -o -type l | grep -v python-core | LC_ALL=C sort | cut -c3-) > debian/MANIFEST.$(ARCH).new
+	find debian/tmp \( -type f -o -type l \) \
+	  ! -path 'debian/tmp/usr/lib/openoffice/program/python-core*' \
+	    | LC_ALL=C sort | cut -c12- > debian/MANIFEST.$(ARCH).new
+
 	# confirm that the installed file list has not changed
 	if [ -e debian/MANIFEST.$(ARCH) ]; then \
 	  if ! cmp -s debian/MANIFEST.$(ARCH) debian/MANIFEST.$(ARCH).new; then \



Reply to: