build: add tool_hugehelp.c into IBMi build

As `tool_hugehelp.c` is no longer included into `Makefile.inc`,
I did add it explicitly to list of source files built on IBMi.

Follow-up to 96843f4ef7 #16068
Fixes #16214
Closes #16215
This commit is contained in:
andrewkirillov-ibm 2025-02-06 12:58:52 +00:00 committed by Viktor Szakats
parent 3f7f180901
commit 449d9f7897
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -47,6 +47,13 @@ fi
get_make_vars Makefile.inc get_make_vars Makefile.inc
# Add hugehelp, as it is not included in Makefile.inc.
if [ "${USE_MANUAL}" = "'USE_MANUAL'" ]
then
CURL_CFILES="${CURL_CFILES} tool_hugehelp.c"
CURL_HFILES="${CURL_HFILES} tool_hugehelp.h"
fi
# Compile the sources into modules. # Compile the sources into modules.
# shellcheck disable=SC2034 # shellcheck disable=SC2034
@ -55,6 +62,7 @@ MODULES=
# shellcheck disable=SC2034 # shellcheck disable=SC2034
INCLUDES="'${TOPDIR}/lib'" INCLUDES="'${TOPDIR}/lib'"
# shellcheck disable=SC2153
for SRC in ${CURLX_CFILES} for SRC in ${CURLX_CFILES}
do MODULE=$(db2_name "${SRC}") do MODULE=$(db2_name "${SRC}")
MODULE=$(db2_name "X${MODULE}") MODULE=$(db2_name "X${MODULE}")