Author: branden Date: 2004-04-14 13:25:27 -0500 (Wed, 14 Apr 2004) New Revision: 1253
Modified: trunk/debian/changelog trunk/debian/local/dexconf Log: Fix dexconf to not write an empty line to the end of generated XF86Config{,-4} files. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2004-04-14 17:16:50 UTC (rev 1252) +++ trunk/debian/changelog 2004-04-14 18:25:27 UTC (rev 1253) @@ -191,8 +191,11 @@ * Re-order diagnostic output of xserver-xfree86 bug script to be skimmable more quickly (in Branden's opinion, anyway). - -- Branden Robinson <[EMAIL PROTECTED]> Wed, 14 Apr 2004 11:42:02 -0500 + * Fix dexconf to not write an empty line to the end of generated + XF86Config{,-4} files. + -- Branden Robinson <[EMAIL PROTECTED]> Wed, 14 Apr 2004 13:24:30 -0500 + xfree86 (4.3.0-7) unstable; urgency=medium * Urgency due to fix for FTBFS. Yes -- I too am begging for it to stop. Modified: trunk/debian/local/dexconf =================================================================== --- trunk/debian/local/dexconf 2004-04-14 17:16:50 UTC (rev 1252) +++ trunk/debian/local/dexconf 2004-04-14 18:25:27 UTC (rev 1253) @@ -751,7 +751,6 @@ ScreenVGA2 ScreenVGA16; do if [ -e "$DEXCONFTMPDIR/$SECTION" ]; then cat "$DEXCONFTMPDIR/$SECTION" >> "$DEXCONFTMPDIR/dexconf-out" - printf "\n" >> "$DEXCONFTMPDIR/dexconf-out" fi done else # $FORMAT == 4 @@ -759,7 +758,6 @@ Device Monitor Screen ServerLayout DRI; do if [ -e "$DEXCONFTMPDIR/$SECTION" ]; then cat "$DEXCONFTMPDIR/$SECTION" >> "$DEXCONFTMPDIR/dexconf-out" - printf "\n" >> "$DEXCONFTMPDIR/dexconf-out" fi done fi