Author: fabbione Date: 2004-08-24 10:56:47 -0500 (Tue, 24 Aug 2004) New Revision: 1747
Modified: trunk/debian/CHANGESETS trunk/debian/local/dexconf Log: Add missing "[". Modified: trunk/debian/CHANGESETS =================================================================== --- trunk/debian/CHANGESETS 2004-08-23 14:50:25 UTC (rev 1746) +++ trunk/debian/CHANGESETS 2004-08-24 15:56:47 UTC (rev 1747) @@ -433,6 +433,6 @@ breakfast and still see the One True Upgrade Path!", or "You silly person, of *course* dpkg and apt accept 'Conflicts: (4.3.0.dfsg.1-4 <<) xserver-xfree86 (<< 4.3.0.dfsg.1-7)'!" - 1746 + 1746, 1747 vim:set ai et sts=4 sw=4 tw=80: Modified: trunk/debian/local/dexconf =================================================================== --- trunk/debian/local/dexconf 2004-08-23 14:50:25 UTC (rev 1746) +++ trunk/debian/local/dexconf 2004-08-24 15:56:47 UTC (rev 1747) @@ -303,7 +303,7 @@ # We have no way of knowing what device GPM is repeating for, and it might be # a USB mouse. if [ "$MOUSE_PORT" != "/dev/input/mice" ] \ - && "$MOUSE_PORT" != "/dev/gpmdata" ]; then + && [ "$MOUSE_PORT" != "/dev/gpmdata" ]; then cat >&4 <<SECTION Section "InputDevice" Identifier "Generic Mouse" @@ -407,7 +407,7 @@ InputDevice "Configured Mouse" SECTION if [ "$MOUSE_PORT" != "/dev/input/mice" ] \ - && "$MOUSE_PORT" != "/dev/gpmdata" ]; then + && [ "$MOUSE_PORT" != "/dev/gpmdata" ]; then printf "\tInputDevice\t\"Generic Mouse\"\n" >&4 fi printf "EndSection\n" >&4