Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: v2 fix for z/OSMF static definition #3931

Open
wants to merge 1 commit into
base: v2.x.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion discovery-package/src/main/resources/bin/configure.sh
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ fi

if [ -e "$SOURCE_FILE" ]; then
# _BPXK_AUTOCVT is set on some systems and resulted in twice-converted files when run through chtag and sed
_BPXK_AUTOCVT="OFF" sed -W filecodeset=ISO8859-1 -e "s|%ZOSMF_SCHEME%|${ZOSMF_SCHEME}|g" $SOURCE_FILE >$DEST_FILE # implicit EBCDIC out
_BPXK_AUTOCVT="ON" sed -W filecodeset=ISO8859-1 -e "s|%ZOSMF_SCHEME%|${ZOSMF_SCHEME}|g" $SOURCE_FILE >$DEST_FILE # implicit EBCDIC out
iconv -f IBM-1047 -t ISO8859-1 $DEST_FILE >$SOURCE_FILE
_BPXK_AUTOCVT="OFF" chtag -tc ISO8859-1 $SOURCE_FILE
rm -f $DEST_FILE
Loading