Since our mailing list doesn't accept messages over a certain size, here are the relevant bits of r1633
Date: Tue, 13 Jul 2004 06:51:02 -0500 (EST) From: X Strike Force SVN Repository Admin <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: X Strike Force XFree86 SVN commit: r1633 - people/fabbione/trunk/debian Author: fabbione Date: 2004-07-13 06:50:53 -0500 (Tue, 13 Jul 2004) New Revision: 1633 Added: people/fabbione/trunk/debian/MANIFEST.hurd-i386.all people/fabbione/trunk/debian/MANIFEST.s390.all Modified: people/fabbione/trunk/debian/CHANGESET people/fabbione/trunk/debian/rules Log: Add MANIFEST.$ARCH.all for special archs (s390 anf hurd-i386) and add support in debian/rules. Modified: people/fabbione/trunk/debian/CHANGESET =================================================================== --- people/fabbione/trunk/debian/CHANGESET 2004-07-13 11:05:35 UTC (rev 1632) +++ people/fabbione/trunk/debian/CHANGESET 2004-07-13 11:50:53 UTC (rev 1633) @@ -8,6 +8,10 @@ (It should always be safe to merge the latest version of TODO or CHANGESETS files anywhere.) +Add MANIFEST.$ARCH.all for special archs (s390 anf hurd-i386) and add support +in debian/rules. + 1633 + Do not build doc/specs. Update MANIFEST.*.in files. Stop shipping duplicate doc/specs in xterm.doc. Update debian/rules and add debian/patches/915_debian_donot_build_specs Modified: people/fabbione/trunk/debian/rules =================================================================== --- people/fabbione/trunk/debian/rules 2004-07-13 11:05:35 UTC (rev 1632) +++ people/fabbione/trunk/debian/rules 2004-07-13 11:50:53 UTC (rev 1633) @@ -347,7 +347,11 @@ if [ ! -e debian/build-all ]; then \ cp debian/MANIFEST.$(ARCH).in debian/MANIFEST.$(ARCH); \ $(ELSE) \ - cat debian/MANIFEST.$(ARCH).in debian/MANIFEST.all | sort > debian/MANIFEST.$(ARCH); \ + if [ -e debian/MANIFEST.$(ARCH).all ]; then \ + cat debian/MANIFEST.$(ARCH).in debian/MANIFEST.$(ARCH).all | sort > debian/MANIFEST.$(ARCH); \ + $(ELSE) \ + cat debian/MANIFEST.$(ARCH).in debian/MANIFEST.all | sort > debian/MANIFEST.$(ARCH); \ + fi; \ fi # confirm that the installed file list has not changed if [ -e debian/MANIFEST.$(ARCH) ]; then \