Author: adam-guest
Date: 2008-09-08 17:46:37 +0000 (Mon, 08 Sep 2008)
New Revision: 1616
Modified:
trunk/debian/changelog
trunk/scripts/dpkg-depcheck.pl
Log:
dpkg-depcheck: Remove -F in order to be compatible with current strace.
I'm not sure exactly when plain 'strace -f' started being able to follow
vfork on Linux, but it's at least as long ago as Debian 4.0, possibly
strace 4.4.93 which would place it before Debian 3.1, so a dependency
doesn't seem to be necessary. (Closes: #497955)
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-09-06 19:14:46 UTC (rev 1615)
+++ trunk/debian/changelog 2008-09-08 17:46:37 UTC (rev 1616)
@@ -75,6 +75,13 @@
* bts: document that the cache auto-cleaning is overzealous on noatime
partitions. Patch from intrigeri <[EMAIL PROTECTED]>. (Closes: #488486)
+ [ Colin Watson ]
+ * dpkg-depcheck: Remove -F in order to be compatible with current strace.
+ I'm not sure exactly when plain 'strace -f' started being able to follow
+ vfork on Linux, but it's at least as long ago as Debian 4.0, possibly
+ strace 4.4.93 which would place it before Debian 3.1, so a dependency
+ doesn't seem to be necessary. (Closes: #497955)
+
-- Mohammed Adnène Trojette <[EMAIL PROTECTED]> Sat, 30 Aug 2008 19:58:43
+0200
devscripts (2.10.35) unstable; urgency=low
Modified: trunk/scripts/dpkg-depcheck.pl
===================================================================
--- trunk/scripts/dpkg-depcheck.pl 2008-09-06 19:14:46 UTC (rev 1615)
+++ trunk/scripts/dpkg-depcheck.pl 2008-09-08 17:46:37 UTC (rev 1616)
@@ -391,7 +391,7 @@
$file = $opts{"strace-output"} || `tempfile -p depcheck`;
chomp $file;
$file =~ s%^(\s)%./$1%;
- my @strace_cmd=('strace', '-e', 'trace=open,execve', '-f', '-F',
+ my @strace_cmd=('strace', '-e', 'trace=open,execve', '-f',
'-q', '-o', $file, @_);
$ENV{'LD_PRELOAD'} = $trace_preload;
$ENV{'LC_ALL'}="C" if $opts{"C"};
--
To unsubscribe, send mail to [EMAIL PROTECTED]