[OS400] Fixed service program path, specified library instead of *LIBL #1093
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi !
zlib/os400/make.sh
Line 15 in 5a82f71
In os400/make.sh, we can choose in which library the final service program is outputted, and the library is even created if it doesn't exist :
zlib/os400/make.sh
Lines 164 to 169 in 5a82f71
We can see the service program being created there in
${TARGETLIB}:zlib/os400/make.sh
Lines 329 to 337 in 5a82f71
But at the end, when adding the service program to the BNDDIR, it's passed as
*LIBL/${SRVPGM}and not as${TARGETLIB}/${SRVPGM}.zlib/os400/make.sh
Lines 363 to 365 in 5a82f71
Seems like an issue to me, as the newly created library isn't added to *LIBL, so it seems wrong to search the service program in *LIBL.