summaryrefslogtreecommitdiff
path: root/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch')
-rw-r--r--sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch b/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch
deleted file mode 100644
index 0742fb9d5dff..000000000000
--- a/sys-block/seekwatcher/files/seekwatcher-0.12_p20091015-dash-fix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-commit e594df5c73ab550fb76895f75f71109eb3640c41
-Author: Sergei Trofimovich <slyfox@gentoo.org>
-Date: Thu Feb 23 22:28:28 2012 +0300
-
- seekwatcher: fix failure when /bin/sh points to dash
-
- Before the patch:
- $ ./seekwatcher -t test.trace -o test.png -p 'sleep 5' -d /dev/sda2
- > using tracefile ./test.trace
- > sh: Syntax error: Bad fd number
- > Empty blktrace run found, exiting
-
-Upstream status: sent, not applied yet
-diff --git a/cmd/seekwatcher b/cmd/seekwatcher
-index 7e96bd2..23cba1c 100755
---- a/cmd/seekwatcher
-+++ b/cmd/seekwatcher
-@@ -610,7 +610,7 @@ def run_blkparse(trace):
- print "using tracefile %s" % os.path.join(trace_dir, x)
- fh = tempfile.NamedTemporaryFile(dir=".")
- os.system('blkparse -q -D ' + trace_dir + ' -i ' + x +
-- ' -d ' + fh.name + ' -O >& /dev/null')
-+ ' -d ' + fh.name + ' -O > /dev/null 2>&1')
- loaddata(fh, rd)
- return rd
-