From f6966b30421d7f14a45c72672038470ef7364c01 Mon Sep 17 00:00:00 2001 From: hpa Date: Wed, 16 Apr 2003 02:49:31 +0000 Subject: [PATCH] Make sure to protect equ-using %if when running make depend --- macros.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macros.inc b/macros.inc index 3702d4c..263501f 100644 --- a/macros.inc +++ b/macros.inc @@ -57,6 +57,7 @@ ; Macro to emit an unsigned decimal number as a string ; %macro asciidec 1.nolist +%ifndef DEPEND ; Not safe for "depend" %if %1 >= 1000000000 db ((%1/1000000000) % 10) + '0' %endif @@ -85,6 +86,7 @@ db ((%1/10) % 10) + '0' %endif db (%1 % 10) + '0' +%endif %endmacro ; -- 2.7.4