mirror of
https://github.com/iterate-ch/cyberduck.git
synced 2026-05-26 19:10:49 +00:00
d1e5d15ba3
Former-commit-id: 611591a228c8eb178be37ab90d23030b04ece0f9
24 lines
909 B
XML
24 lines
909 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="Java Runtime" basedir=".">
|
|
|
|
<property name="runtime.dependency" value="${build}/1.8.0_74.jre"/>
|
|
|
|
<property name="bundle.runtime" value="${bundle.plugins}/Runtime.jre"/>
|
|
<property name="bundle.runtime.lib"
|
|
value="@executable_path/../MacOS/Runtime.jre/Contents/Home/lib/server/libjvm.dylib"/>
|
|
|
|
<target name="shared-library-install-name">
|
|
<echo message="Change dynamic shared library install names to ${newname} in ${directory}"/>
|
|
<apply executable="/usr/bin/install_name_tool" failonerror="true"
|
|
type="file"
|
|
parallel="false" spawn="false" force="true">
|
|
<arg line="-change ${oldname} ${newname}"/>
|
|
<fileset dir="${directory}">
|
|
<include name="*.dylib"/>
|
|
</fileset>
|
|
<srcfile/>
|
|
</apply>
|
|
</target>
|
|
</project>
|