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

X Strike Force XFree86 SVN commit: rev 826 - trunk/debian



Author: branden
Date: 2003-12-06 20:53:15 -0500 (Sat, 06 Dec 2003)
New Revision: 826

Modified:
   trunk/debian/changelog
   trunk/debian/xdm.config.in
Log:
Fix bogus invocation of "head" in xdm's configuration script.
(Closes: #223038)


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2003-12-07 01:43:08 UTC (rev 825)
+++ trunk/debian/changelog	2003-12-07 01:53:15 UTC (rev 826)
@@ -4,8 +4,12 @@
     (Closes: #220713)
     - debian/shell-lib.sh
 
- -- Branden Robinson <branden@debian.org>  Fri, 14 Nov 2003 14:03:33 -0500
+  * Fix bogus invocation of "head" in xdm's configuration script.
+    (Closes: #223038)
+    - debian/xdm.config.in
 
+ -- Branden Robinson <branden@debian.org>  Sat,  6 Dec 2003 20:50:48 -0500
+
 xfree86 (4.2.1-14) unstable; urgency=medium
 
   * Urgency due to fix for FTBFS triggered by linux-kernel-headers package.

Modified: trunk/debian/xdm.config.in
===================================================================
--- trunk/debian/xdm.config.in	2003-12-07 01:43:08 UTC (rev 825)
+++ trunk/debian/xdm.config.in	2003-12-07 01:53:15 UTC (rev 826)
@@ -35,7 +35,7 @@
   if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then
     CURRENT_DEFAULT=$(basename "$(grep -v '^[[:space:]]*#' \
                                   "$DEFAULT_DISPLAY_MANAGER_FILE" |
-                                  head -n -1)")
+                                  head -n 1)")
     if [ -n "$CURRENT_DEFAULT" ]; then
       if ! which "$CURRENT_DEFAULT" > /dev/null 2>&1; then
         observe "default display manager \"$CURRENT_DEFAULT\" specified in" \



Reply to: