You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Eduard Wirch (JIRA)" <ji...@codehaus.org> on 2007/02/06 13:45:44 UTC

[jira] Created: (MPNATIVE-20) MSVCResourceCompiler uses getIncludePaths() for retrieving SystemIncludePaths

MSVCResourceCompiler uses getIncludePaths() for retrieving SystemIncludePaths
-----------------------------------------------------------------------------

                 Key: MPNATIVE-20
                 URL: http://jira.codehaus.org/browse/MPNATIVE-20
             Project: maven-native-plugin
          Issue Type: Bug
    Affects Versions: 1.2
         Environment: windows, jdk1.5.0_06
            Reporter: Eduard Wirch
            Priority: Minor


In class MSVCResourceCompiler in getCommandLine():

These lines:

        for ( int i = 0; i < config.getSystemIncludePaths().length; ++i )
        {
            String includePath = config.getIncludePaths()[i].getPath();

Should be like this:

        for ( int i = 0; i < config.getSystemIncludePaths().length; ++i )
        {
            String includePath = config.getSystemIncludePaths()[i].getPath();


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira