Author: branden Date: 2004-07-12 00:15:30 -0500 (Mon, 12 Jul 2004) New Revision: 1625
Modified: trunk/debian/CHANGESETS trunk/debian/changelog trunk/debian/rules Log: Invert the sense of a test in debian/rules; this results in xlibmesa-dri's bug script actually being shipped. D'oh! Modified: trunk/debian/CHANGESETS =================================================================== --- trunk/debian/CHANGESETS 2004-07-11 18:31:43 UTC (rev 1624) +++ trunk/debian/CHANGESETS 2004-07-12 05:15:30 UTC (rev 1625) @@ -38,4 +38,8 @@ 4.3.0.dfsg.1-7, the control file will need to be fixed. 1617 +Invert the sense of a test in debian/rules; this results in xlibmesa-dri's +bug script actually being shipped. D'oh! + 1625 + vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2004-07-11 18:31:43 UTC (rev 1624) +++ trunk/debian/changelog 2004-07-12 05:15:30 UTC (rev 1625) @@ -22,8 +22,11 @@ but not xbase-clients. Make xbase-clients declare that it replaces xutils (<< 4.3.0.dfsg.1-7). (Closes: #200061) - -- Branden Robinson <[EMAIL PROTECTED]> Sat, 10 Jul 2004 12:09:31 -0500 + * Invert the sense of a test in debian/rules; this results in xlibmesa-dri's + bug script actually being shipped. D'oh! + -- Branden Robinson <[EMAIL PROTECTED]> Mon, 12 Jul 2004 00:14:08 -0500 + xfree86 (4.3.0.dfsg.1-6) unstable; urgency=low Changes by Branden Robinson: Modified: trunk/debian/rules =================================================================== --- trunk/debian/rules 2004-07-11 18:31:43 UTC (rev 1624) +++ trunk/debian/rules 2004-07-12 05:15:30 UTC (rev 1625) @@ -405,7 +405,7 @@ install -m 755 debian/xserver-xfree86.bug debian/xserver-xfree86-dbg/usr/share/bug/xserver-xfree86-dbg endif # (Crudely) test to see if we're shipping xlibmesa-dri for the architecture being built. -ifeq (,$(findstring xlibmesa-dri,$(XLIBMESA_GL_SPECIAL_DEPENDS))) +ifneq (,$(findstring xlibmesa-dri,$(XLIBMESA_GL_SPECIAL_DEPENDS))) install -m 755 -d debian/xlibmesa-dri/usr/share/bug install -m 755 debian/xlibmesa-dri.bug debian/xlibmesa-dri/usr/share/bug/xlibmesa-dri endif