From a132cdfe01b7be3fa915419b84e09358c1bcfaf6 Mon Sep 17 00:00:00 2001 From: sparky4 Date: Wed, 8 May 2019 11:42:56 -0500 Subject: [PATCH] fixed the issue with compiling in dos in 1.9 and 2.0. only 1.9 linux fails for some reason wmake comp fails in dos --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index bbc64e1b..c0f1ecb0 100755 --- a/makefile +++ b/makefile @@ -578,11 +578,11 @@ initscript: .symbolic comp: .symbolic - @*upx -9 *.exe#$(EXEC) + @if exist *.exe @upx -9 *.exe#$(EXEC) @wmake -s -h e2exe comq: .symbolic - @*upx -9 $(UPXQ) *.exe#$(EXEC) + @if exist *.exe @upx -9 $(UPXQ) *.exe#$(EXEC) @wmake -s -h e2exe exe2e: .symbolic -- 2.39.2