[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Nested eval
From: |
David A. Greene |
Subject: |
Re: Nested eval |
Date: |
Fri, 31 Aug 2007 22:44:31 -0500 |
User-agent: |
KMail/1.9.5 |
On Friday 31 August 2007 21:56, David A. Greene wrote:
> define testa
> testa_target := $$(eval $(1))
Getting rid of the eval and just doing
testa_target := $(1)
solves the problem. I guess that makes sense since the value of
$(1) is evaluated when the result of testa is evaluated.
-Dave
- Nested eval, David A. Greene, 2007/08/31
- Re: Nested eval,
David A. Greene <=