From 6d4bc31fd4ad3c3fe5338349436e7f18b6543321 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sat, 2 Jan 2021 15:21:03 +1000 Subject: build: Fix bootstrap build In order for make-bootstrap-jim to reliably match #ifndef...JIM_BOOTSTRAP with the corresponding #endif, a corresponding comment needs to be added after the #endif Signed-off-by: Steve Bennett --- jim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jim.c') diff --git a/jim.c b/jim.c index bc932ed..5661114 100644 --- a/jim.c +++ b/jim.c @@ -15838,8 +15838,8 @@ static const struct { {"lsort", Jim_LsortCoreCommand}, {"append", Jim_AppendCoreCommand}, #if defined(JIM_DEBUG_COMMAND) && !defined(JIM_BOOTSTRAP) - {"debug", Jim_DebugCoreCommand}, -#endif + {"debug", Jim_DebugCoreCommand}, +#endif /* JIM_DEBUG_COMMAND && !JIM_BOOTSTRAP */ {"eval", Jim_EvalCoreCommand}, {"uplevel", Jim_UplevelCoreCommand}, {"expr", Jim_ExprCoreCommand}, -- cgit v1.1