This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED] Remove eval from bench target


On Wed, Apr 10, 2013 at 09:56:10PM -0300, Tulio Magno Quites Machado Filho wrote:
> 
> Siddhesh, feel free to remove this eval.
> 

OK thanks.  I've pushed this as obvious/pre-approved.

Siddhesh

commit 8da491f585f6112630688d0632407f5460136ffe
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Thu Apr 11 09:15:52 2013 +0530

    Remove eval
    
    It's not needed.

diff --git a/ChangeLog b/ChangeLog
index 4115225..5d8b297 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* Rules (bench): Remove eval.
+
 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
 	    Roland McGrath  <roland@hack.frob.com>
 	    Ondrej Bilka  <neleai@seznam.cz>
diff --git a/Rules b/Rules
index d4a0027..e8e1117 100644
--- a/Rules
+++ b/Rules
@@ -199,7 +199,7 @@ run-bench = $(test-wrapper-env) \
 bench: $(binaries-bench)
 	for run in $^; do \
 	  echo "Running $${run}"; \
-	  eval $(run-bench) >>  $(objpfx)bench.out-tmp; \
+	  $(run-bench) >>  $(objpfx)bench.out-tmp; \
 	done; \
 	if [ -f $(objpfx)bench.out ]; then \
 	  mv -f $(objpfx)bench.out $(objpfx)bench.out.old; \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]