diff options
author | Joe George <joe@zeroc.com> | 2015-11-19 17:15:45 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2015-11-19 17:15:45 -0500 |
commit | 06b6edf34a7d43a88cef32f1331325af0b5cdf72 (patch) | |
tree | 338ae4aa1fd30c300fe448630895f0d5b38e72c2 /java/src | |
parent | Objects test updates to sync with Java/C# (diff) | |
download | ice-06b6edf34a7d43a88cef32f1331325af0b5cdf72.tar.bz2 ice-06b6edf34a7d43a88cef32f1331325af0b5cdf72.tar.xz ice-06b6edf34a7d43a88cef32f1331325af0b5cdf72.zip |
Fix ICE-6839
Move install directory for IceGrid Admin app from ${prefix}/bin to
${prefix} on OS X. This is where Homebrew expects to find apps.
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/IceGridGUI/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/build.gradle b/java/src/IceGridGUI/build.gradle index 8634d746cbc..15f7c9285e9 100644 --- a/java/src/IceGridGUI/build.gradle +++ b/java/src/IceGridGUI/build.gradle @@ -151,7 +151,7 @@ if(macosx) task copyBundle(type: Copy, dependsOn: bundleapp) { from "${libDir}/${appName}.app" - into "${DESTDIR}${binDir}/${appName}.app" + into "${DESTDIR}/${prefix}/${appName}.app" } } |