diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-01-29 23:16:19 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-01-29 23:16:19 +0100 |
commit | f486b35f980615fb16b1d6d23dd47b0e3ef40275 (patch) | |
tree | 2363b93cc4f6830dc4926c8846fb5ae665ebc611 | |
parent | 0c73802c540cb0ed20ca5d6343aa207c8c7c6745 (diff) |
Fix a copy&paste error
-rwxr-xr-x | set_soenv.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/set_soenv.in b/set_soenv.in index ec4eef69b1e6..7c5fe7d82b1c 100755 --- a/set_soenv.in +++ b/set_soenv.in @@ -1488,7 +1488,8 @@ if ($platform =~ m/linux/) elsif ($platform =~ m/cygwin/) { $SOLARINC .= $STLPORT_stlport; if ($JAVA_HOME ne "" && $JAVA_HOME ne "NO_JAVA_HOME") - { $SOLARINC .= $I.'$JAVA_HOME'.$INCLUDE.$ds."win32"; + { $SOLARINC .= $I.'$JAVA_HOME'.$INCLUDE.$ds."win32". + $I.'$JAVA_HOME'.$INCLUDE; } # Mingw is different if ( $COM eq "MSC" ) |