From: andrewkirillov-ibm Date: Thu, 6 Feb 2025 12:58:52 +0000 (+0000) Subject: build: add tool_hugehelp.c into IBMi build X-Git-Tag: curl-8_12_1~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=449d9f7897ed129102068402c7dde0e6e0ccaf40;p=thirdparty%2Fcurl.git 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 96843f4ef74e02452972fd97fe15d8ff656f46ec #16068 Fixes #16214 Closes #16215 --- diff --git a/packages/OS400/make-src.sh b/packages/OS400/make-src.sh index 21fd0015b4..788910aa06 100755 --- a/packages/OS400/make-src.sh +++ b/packages/OS400/make-src.sh @@ -47,6 +47,13 @@ fi 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. # shellcheck disable=SC2034 @@ -55,6 +62,7 @@ MODULES= # shellcheck disable=SC2034 INCLUDES="'${TOPDIR}/lib'" +# shellcheck disable=SC2153 for SRC in ${CURLX_CFILES} do MODULE=$(db2_name "${SRC}") MODULE=$(db2_name "X${MODULE}")