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

X Strike Force SVN commit: rev 362 - trunk/debian



Author: branden
Date: 2003-08-05 00:34:45 -0500 (Tue, 05 Aug 2003)
New Revision: 362

Modified:
   trunk/debian/changelog
   trunk/debian/xserver-xfree86.config.in
Log:
debian/xserver-xfree86.config.in: also issue debugging output if the
  DEBCONF_DEBUG environment variable is set to a non-null value, and prefix
  debugging messages with a proper identifier of what is issuing them rather
  than the relatively unhelpful "DEBUG:"


Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog	2003-08-05 05:16:18 UTC (rev 361)
+++ trunk/debian/changelog	2003-08-05 05:34:45 UTC (rev 362)
@@ -96,8 +96,13 @@
     Xsession(5) (based on a patch by Frank Murphy -- thanks!)
     (Closes: #195845)
 
- -- Branden Robinson <branden@debian.org>  Mon,  4 Aug 2003 23:57:03 -0500
+  * debian/xserver-xfree86.config.in: also issue debugging output if the
+    DEBCONF_DEBUG environment variable is set to a non-null value, and prefix
+    debugging messages with a proper identifier of what is issuing them rather
+    than the relatively unhelpful "DEBUG:"
 
+ -- Branden Robinson <branden@debian.org>  Tue,  5 Aug 2003 00:32:46 -0500
+
 xfree86 (4.2.1-9) unstable; urgency=high
 
   * urgency due to xterm security fixes; see below

Modified: trunk/debian/xserver-xfree86.config.in
==============================================================================
--- trunk/debian/xserver-xfree86.config.in	2003-08-05 05:16:18 UTC (rev 361)
+++ trunk/debian/xserver-xfree86.config.in	2003-08-05 05:34:45 UTC (rev 362)
@@ -24,8 +24,8 @@
 
 debug_echo () {
   # Syntax: debug_echo message ...
-  if [ -n "$DEBUG_XFREE86_DEBCONF" ]; then
-    echo "DEBUG: $*" | fold -s -w ${COLUMNS:-80} >&2
+  if [ -n "$DEBUG_XFREE86_DEBCONF" -o -n "$DEBCONF_DEBUG" ]; then
+    echo "$THIS_PACKAGE $THIS_SCRIPT debug: $*" | fold -s -w ${COLUMNS:-80} >&2
   fi;
 }
 



Reply to: