version 20200608

Bug fix in the "test for required SAS software components" in the localized SAS session (e.g. po_PL)
This commit is contained in:
yabwon
2020-06-08 08:13:03 +02:00
parent c1d39de4eb
commit f1f88c3ca7

View File

@@ -36,7 +36,7 @@
*/
/**#############################################################################**/
/* Macros to generate SAS packages, version 20200424 */
/* Macros to generate SAS packages, version 20200608 */
/* A SAS package is a zip file containing a group
of SAS codes (macros, functions, datasteps generating
data, etc.) wrapped up together and %INCLUDEed by
@@ -531,7 +531,7 @@ data _null_;
%do;
put ' %put NOTE- *Testing required SAS components*%sysfunc(DoSubL( '; /* DoSubL() */
put ' options nonotes nosource %str(;) ';
put ' options ls=max ps=max %str(;) ';
put ' options ls=max ps=max locale=en_US %str(;) ';
put ' /* temporary redirect log */ ';
put ' filename _stinit_ TEMP %str(;) ';
put ' proc printto log = _stinit_ %str(;) run %str(;) ';
@@ -1105,7 +1105,7 @@ data _null_;
put ' end ; ';
%end;
put 'put "***"; put "* SAS package generated by generatePackage, version 20200424 *"; put "***";';
put 'put "***"; put "* SAS package generated by generatePackage, version 20200608 *"; put "***";';
put 'run; ' /;