1From 16823f5c3d3d5adad0b70e9055c08cb4e18d255b Mon Sep 17 00:00:00 2001
2From: Noor Ahsan <noor_ahsan@mentor.com>
3Date: Mon, 29 Aug 2011 16:17:51 +0000
4Subject: [PATCH] lmbench: Add version 3.0-a9 (initial recipe)
5
6Both lmbench and util-linux-ng packages provide own /usr/bin/line binaries.
7Even though the binaries name is the same, their functionality is different.
8This patch renames lmbench's line binary as lm_line to avoid conflicts with
9util-linux-ng.  script/config-run is also modified (patch) to call lm_line
10instead of line.
11
12Upstream-Status: Inappropriate [build system specific change]
13
14---
15 scripts/config-run | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/scripts/config-run b/scripts/config-run
19index f620c15..a2d5ba4 100755
20--- a/scripts/config-run
21+++ b/scripts/config-run
22@@ -224,7 +224,7 @@ fi
23
24 echo "Hang on, we are calculating your cache line size."
25 ../bin/$OS/msleep 250
26-LINE_SIZE=`../bin/$OS/line -M ${MB}M`
27+LINE_SIZE=`../bin/$OS/lm_line -M ${MB}M`
28 export LINE_SIZE
29 echo "OK, it looks like your cache line is $LINE_SIZE bytes."
30 echo ""
31