From 41d46b8f8ffed59da96e97692b82188786a724d2 Mon Sep 17 00:00:00 2001 From: Igor Ustinov Date: Thu, 6 Nov 2025 22:08:17 +0100 Subject: [PATCH] DJGPP configuration fix, based on the PR #27595 Fixes #27514 Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/29093) --- Configurations/50-djgpp.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configurations/50-djgpp.conf b/Configurations/50-djgpp.conf index fbe4911c420..4b6861dc08f 100644 --- a/Configurations/50-djgpp.conf +++ b/Configurations/50-djgpp.conf @@ -7,9 +7,9 @@ my %targets = ( inherit_from => [ "BASE_unix" ], CC => "gcc", CFLAGS => "-fomit-frame-pointer -O2 -Wall", - cflags => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN", + cflags => "-I\$(WATT_ROOT)/inc -DTERMIOS -DL_ENDIAN", sys_id => "MSDOS", - lflags => add("-L/dev/env/WATT_ROOT/lib"), + lflags => add("-L\$(WATT_ROOT)/lib"), ex_libs => add("-lwatt"), bn_ops => "BN_LLONG", asm_arch => 'x86', -- 2.47.3