description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: NMAKE Fatal Error U1070 |
NMAKE Fatal Error U1070 |
11/04/2016 |
|
|
8639fc39-b4b1-48f5-ac91-0e9fb61680fd |
cycle in macro definition 'macroname'
The given macro definition contained a macro whose definition contained the given macro. Circular macro definitions are invalid.
The following macro definitions
ONE=$(TWO)
TWO=$(ONE)
cause the following error:
cycle in macro definition 'TWO'