Changeset 15263


Ignore:
Timestamp:
06/13/13 16:16:18 (12 years ago)
Author:
Eric.Larour
Message:

CHG: fixed issue with comkpiler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/cccl/issm/cccl

    r15255 r15263  
    109109                       
    110110echo "$prog "$includeopts" $opts /nologo"
    111 $prog "$includeopts" $opts /nologo
     111if test -e "$includeopts";
     112then
     113        #If includeopts is not empty, include it, we add the double quotes for voodoo magic, do not mess with that
     114        $prog "$includeopts" $opts /nologo
     115else
     116        #If empty, do not include it, because the double quotes will mess it up.
     117        $prog $opts /nologo
     118fi
     119
    112120exit 0
    113121
Note: See TracChangeset for help on using the changeset viewer.