Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: remove message about missing wcc386 if Open Watcom is not inst… #402

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kermit/k95/compiler_detect.mak
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ISJOM=yes
CMP = VCXX
COMPILER = Visual C++

!IF ([wcc386 . <nul 2>&1 > nul] == 0)
!IF ([wcc386 . <nul >nul 2>&1] == 0)
# Open Watcom
CMP = OWCL
COMPILER = Open Watcom C/C++ CL clone
Expand Down
4 changes: 2 additions & 2 deletions setenv.bat
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ REM This should match the %PROCESSOR_ARCHITECTURE% on the target machine
set CKB_TARGET_ARCH=x86

set CKB_OPENSSL_SUFFIX=
wcc386 . <nul 2>&1 > nul
wcc386 . <nul >nul 2>&1
if %errorlevel% == 0 goto :bitcheckdone

cl 2>&1 | findstr /C:"for x64" > nul
Expand Down Expand Up @@ -574,7 +574,7 @@ set CKB_NT_COMPATIBLE=no
set CKB_XP_COMPATIBLE=no
set CKB_OS2_COMPATIBLE=no

wcc386 . <nul 2>&1 > nul
wcc386 . <nul >nul 2>&1
if %errorlevel% == 0 goto :watcomc
cl 2>&1 | findstr /C:"Version 19.4" > nul
if %errorlevel% == 0 goto :vc144
Expand Down
2 changes: 1 addition & 1 deletion setenv.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ REM CKB_IBMTCP20=yes
REM ================== No changes required beyond this point ===================

set ZINCBUILD=
wcc386 . <nul 2>&1 > nul
wcc386 . <nul >nul 2>&1
if not %errorlevel% == 0 goto :unsupported
wcc386 . <nul 2>&1 | findstr /C:"Version 1.9" > nul
if %errorlevel% == 0 set ZINCBUILD=ow19
Expand Down