@@ -84,12 +84,12 @@ void GenerateShellConfig (Context context, StreamWriter sw)
8484 AddReplacements ( commonReplacements , hostRuntimeReplacements ) ;
8585
8686 string monodroidObjDir = Path . Combine ( Configurables . Paths . MonodroidSourceDir , "obj" , context . Configuration ) ;
87- string jdkInfoPropsPath = Path . Combine ( Configurables . Paths . ExternalJavaInteropDir , "bin" , $ "Build{ context . Configuration } ", "JdkInfo.props" ) ;
87+ string jdkInfoPropsPath = Path . Combine ( Configurables . Paths . ExternalJavaInteropDir , "bin" , $ "Build{ context . Configuration } ", "JdkInfo-11 .props" ) ;
8888
8989 sw . WriteLine ( "# This is a bash(1) script" ) ;
9090 sw . WriteLine ( ) ;
9191 sw . WriteLine ( $ "CMAKE=\" { context . Properties . GetRequiredValue ( KnownProperties . CMakePath ) } \" ") ;
92- sw . WriteLine ( $ "JDK_INCLUDE_PATH=\" $(grep JdkIncludePath { jdkInfoPropsPath } | cut -d '\" ' -f 2 | tr '\\ n' ' ')\" ") ;
92+ sw . WriteLine ( $ "JDK_INCLUDE_PATH=\" $(grep Jdk11IncludePath { jdkInfoPropsPath } | cut -d '\" ' -f 2 | tr '\\ n' ' ')\" ") ;
9393 sw . WriteLine ( $ "MONO_SOURCE_PATH=\" { Configurables . Paths . MonoSourceFullPath } \" ") ;
9494 sw . WriteLine ( $ "MONODROID_OBJ_DIR=\" { monodroidObjDir } \" ") ;
9595 sw . WriteLine ( $ "MONODROID_SOURCE_DIR=\" { Configurables . Paths . MonodroidSourceDir } \" ") ;
@@ -341,7 +341,7 @@ void GenerateMonodroidTargets (Context context, StreamWriter sw)
341341
342342 var hostRuntimeReplacements = new Dictionary < string , string > ( StringComparer . Ordinal ) {
343343 { "@CmakeHostFlags@" , "%(_HostRuntime.CmakeFlags)" } ,
344- { "@JdkIncludePath@" , "@(JdkIncludePath ->'%(Identity)', ' ')" } ,
344+ { "@JdkIncludePath@" , "@(Jdk11IncludePath ->'%(Identity)', ' ')" } ,
345345 { "@OUTPUT_DIRECTORY@" , "" } ,
346346 } ;
347347
0 commit comments