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