From 778dec8f6727b95b8268175605762b88fcc1af26 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Wed, 11 Jun 2025 10:25:54 +0000 Subject: [PATCH] Fix missing braces around PREPUP_OPT --- tests/Makefile.fpc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Makefile.fpc b/tests/Makefile.fpc index daf431072d..c4a853de48 100644 --- a/tests/Makefile.fpc +++ b/tests/Makefile.fpc @@ -749,15 +749,15 @@ $(TEST_OUTPUTDIR)/$(DB_TARGZ): $(TEST_OUTPUTDIR)/dbdigest.cfg ifdef inDOS $(ECHOREDIR) @echo off > dotgz$(SRCBATCHEXT) $(ECHOREDIR) cd $(subst /,\,$(TEST_OUTPUTDIR)) >> dotgz$(SRCBATCHEXT) - $(ECHOREDIR) $(subst /,\,../../$(PREPUP)) $PREPUP_OPT $(DB_TARGZ) >> dotgz$(SRCBATCHEXT) + $(ECHOREDIR) $(subst /,\,../../$(PREPUP)) $(PREPUP_OPT) $(DB_TARGZ) >> dotgz$(SRCBATCHEXT) $(ECHOREDIR) if errorlevel 1 $(DEL) $(DB_TARGZ) >> dotgz$(SRCBATCHEXT) $(ECHOREDIR) cd $(subst /,\,../../) >> dotgz$(SRCBATCHEXT) $(RUNBATCH) dotgz$(SRCBATCHEXT) else ifdef inOS2 - cd "$(subst /,\,$(TEST_OUTPUTDIR))" && "$(subst /,\,../../$(PREPUP))" $PREPUP_OPT $(DB_TARGZ) + cd "$(subst /,\,$(TEST_OUTPUTDIR))" && "$(subst /,\,../../$(PREPUP))" $(PREPUP_OPT) $(DB_TARGZ) else - cd "$(TEST_OUTPUTDIR)" && "../../$(PREPUP)" $PREPUP_OPT $(DB_TARGZ) + cd "$(TEST_OUTPUTDIR)" && "../../$(PREPUP)" $(PREPUP_OPT) $(DB_TARGZ) endif endif endif