Project

General

Profile

build.diff

Hynek Cihlar, 02/09/2017 10:26 AM

Download (1.64 KB)

View differences:

build.xml
164 164
** 073 HC  20170110          Changes to support dependency resolution by gradle. Removed the
165 165
**                           p2jrt.jar target.
166 166
** 074 ECF 20170202          Fixed p2jspi.jar build regression.
167
** 075 HC  20170209          Added new line before sudo prompt.
167 168
*/
168 169
 -->
169 170
 
......
1072 1073
          unless="run-gradle-run"
1073 1074
          depends="ant-compile, ant-native_prepare"
1074 1075
          description="Compile the native shared library (to be called via JNI)" >
1075
     
1076

  
1077
     <!-- make the sudo input appear on new line -->
1078
     <echo message="${line.separator}"/>
1079

  
1076 1080
     <exec dir="${build.home}/native" executable="${native.build.tool}" failonerror="true">
1077 1081
        <arg value="SONAME=${libname}" />
1078 1082
        <arg value="SRCDIR=${src.home}/native"/>
gradle.properties
1
org.gradle.daemon=false
gradlew
166 166
  cd "$(dirname "$0")"
167 167
fi
168 168

  
169
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
169
# GCD: use --console=plain to fix sudo input being overwritten by gradle status messages
170
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain --console=plain "$@"