Changeset 84


Ignore:
Timestamp:
Nov 4, 2010, 5:25:52 PM (14 years ago)
Author:
Yuri Dario
Message:

rpm: allow detection of rexx scripts also by recognizing /* at start of script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified rpm/trunk/lib/psm.c

    r66 r84  
    713713                // get native paths
    714714                _realrealpath( fn, fn_native, sizeof( fn_native));
    715                 if (strstr( token, ".cmd") || strstr( token, ".exe")) {
     715                if (strstr( token, ".cmd") || strstr( token, ".exe")
     716                    || strstr( token, "/*")) {
    716717                        shell = "cmd.exe";
    717718                        argvAdd(argvp, "/c");
Note: See TracChangeset for help on using the changeset viewer.