Commit df6b46c for zlib
commit df6b46cfcfd89b4a372e282e107850a48fbb8fd4
Author: Thomas Sayen <69324626+Chi-Iroh@users.noreply.github.com>
Date: Mon Oct 20 16:18:53 2025 +0200
Fix service program path for OS/400.
Specify library instead of *LIBL.
diff --git a/os400/make.sh b/os400/make.sh
index 6673f71..f128109 100644
--- a/os400/make.sh
+++ b/os400/make.sh
@@ -361,6 +361,6 @@ then rm -rf "${LIBIFSNAME}/${DYNBNDDIR}.BNDDIR"
CMD="${CMD} TEXT('ZLIB dynamic binding directory')"
system "${CMD}"
CMD="ADDBNDDIRE BNDDIR(${TARGETLIB}/${DYNBNDDIR})"
- CMD="${CMD} OBJ((*LIBL/${SRVPGM} *SRVPGM))"
+ CMD="${CMD} OBJ((${TARGETLIB}/${SRVPGM} *SRVPGM))"
system "${CMD}"
fi