-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from IBM/fix/223-support-for-rules-to-run-sys…
…tem-commands Fix/223 support for rules to run system commands and Fix 225 support for splitting lines with escaped newlines
- Loading branch information
Showing
5 changed files
with
120 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
* Thu Apr 27 2023 Edmund Reinhardt <[email protected]> - 2.4.12 | ||
- Support rules with no dependencies, which is useful for custom recipes. | ||
Addresses https://github.com/IBM/ibmi-bob/issues/223 | ||
- Support the splitting of lines using escaped newlines as described by | ||
https://www.gnu.org/software/make/manual/make.html#Splitting-Lines | ||
* Mon Apr 17 2023 Edmund Reinhardt <[email protected]> - 2.4.11 | ||
- Fix SAVOBJ/RSTOBJ command for crtfrmstmf - failed when deleting files that | ||
depend on a PF. https://github.com/IBM/ibmi-bob/issues/215 and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CRTSBSD.FILE: | ||
system -i "CRTSBSD SBSD(BATCHWL/BATCHSBSD) POOLS((1 *SHRPOOL3 *N *MB))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
ARTICLE.FILE: ARTICLE-Article_File.PF \ | ||
SAMREF.FILE | ||
ART301D.FILE: ART301D-Function_Select_an_article.DSPF\ | ||
ARTICLE.FILE VATDEF.FILE | ||
|
||
|
||
DETORD.FILE: DETORD.PF SAMREF.FILE | ||
ORD500O.FILE: ORD500O.PRTF ORDER.FILE CUSTOMER.FILE \ | ||
DETORD.FILE ARTICLE.FILE | ||
TMPDETORD.FILE: | ||
system -i "CPYF FROMFILE($(OBJLIB)/DETORD) TOFILE($(OBJLIB)/TMPDETORD) \ | ||
CRTFILE(*YES)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters