Skip to content

Commit

Permalink
Merge pull request #144 from IBM/fix/issue141
Browse files Browse the repository at this point in the history
Use CRTCBLPGM instead of CRTPRTF
  • Loading branch information
edmundreinhardt authored Oct 15, 2022
2 parents 5ad8a25 + 1408b36 commit 8bc63c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/def_rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -948,9 +948,9 @@ define CBL_TO_PGM_RECIPE =
$(PGM_VARIABLES)
$(eval d = $($@_d))
@$(call echo_cmd,"=== Create COBOL Program [$(basename $@)]")
$(eval crtcmd := "$(SCRIPTSPATH)/crtfrmstmf --ccsid $(TGTCCSID) -f $< -o $(basename $(@F)) -l $(OBJLIB) -c "CRTPRTF" -p '"$(CRTPRTFFLAGS)"'")
$(eval crtcmd := "$(SCRIPTSPATH)/crtfrmstmf --ccsid $(TGTCCSID) -f $< -o $(basename $(@F)) -l $(OBJLIB) -c "CRTCBLPGM" -p '"$(CRTCBLPGMFLAGS)"'")
@$(PRESETUP) \
$(SCRIPTSPATH)/crtfrmstmf --ccsid $(TGTCCSID) -f $< -o $(basename $(@F)) -l $(OBJLIB) -c "CRTPRTF" -p "$(CRTPRTFFLAGS)" --save-joblog "$(JOBLOGFILE)" >> $(LOGFILE) 2>&1 && $(call logSuccess,$@) || $(call logFail,$@)
$(SCRIPTSPATH)/crtfrmstmf --ccsid $(TGTCCSID) -f $< -o $(basename $(@F)) -l $(OBJLIB) -c "CRTCBLPGM" -p "$(CRTCBLPGMFLAGS)" --save-joblog "$(JOBLOGFILE)" >> $(LOGFILE) 2>&1 && $(call logSuccess,$@) || $(call logFail,$@)
@$(call EVFEVENT_DOWNLOAD,$*.evfevent)
endef

Expand Down

0 comments on commit 8bc63c9

Please sign in to comment.