diff options
author | Brian Hinz <bphinz@users.sourceforge.net> | 2013-12-02 02:31:23 +0000 |
---|---|---|
committer | Brian Hinz <bphinz@users.sourceforge.net> | 2013-12-02 02:31:23 +0000 |
commit | 0990998e00a61bc653592281ad9f914aef291327 (patch) | |
tree | 7e9e53e69d26de948d0d8148ce1fc0bfd6039f56 | |
parent | e8d24dcbd98106173c14dc16147b0843ce0b10dc (diff) | |
download | tigervnc-0990998e00a61bc653592281ad9f914aef291327.tar.gz tigervnc-0990998e00a61bc653592281ad9f914aef291327.zip |
Fix regression in java install path introduced in r5143
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5144 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r-- | java/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/CMakeLists.txt b/java/CMakeLists.txt index c640da87..3477c8d0 100644 --- a/java/CMakeLists.txt +++ b/java/CMakeLists.txt @@ -142,9 +142,9 @@ add_custom_target(java ALL DEPENDS VncViewer.jar) if(NOT WIN32) install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/VncViewer.jar - ${SRCDIR}/README - ${SRCDIR}/index.vnc - ${SRCDIR}/favicon.ico + ${BINDIR}/VncViewer.jar + ${SRCDIR}/${CLASSPATH}/README + ${SRCDIR}/${CLASSPATH}/index.vnc + ${SRCDIR}/${CLASSPATH}/favicon.ico DESTINATION ${DATA_DIR}/vnc/classes) endif() |