|
From: <and...@us...> - 2009-03-03 21:17:12
|
Revision: 9670
http://plplot.svn.sourceforge.net/plplot/?rev=9670&view=rev
Author: andrewross
Date: 2009-03-03 21:17:10 +0000 (Tue, 03 Mar 2009)
Log Message:
-----------
Install ocaml packages in
${CMAKE_INSTALL_PREFIX}/lib/ocaml/${OCAML_VERSION}
rather than
${CMAKE_INSTALL_PREFIX}/lib/${OCAML_VERSION}
which is now consistent with Debian (as the comment suggests) and also
follows what we do for other languages.
Modified Paths:
--------------
trunk/cmake/modules/ocaml.cmake
Modified: trunk/cmake/modules/ocaml.cmake
===================================================================
--- trunk/cmake/modules/ocaml.cmake 2009-03-03 21:12:28 UTC (rev 9669)
+++ trunk/cmake/modules/ocaml.cmake 2009-03-03 21:17:10 UTC (rev 9670)
@@ -99,7 +99,7 @@
# Installation follows the Debian ocaml policy for want of a better
# standard.
- set(OCAML_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib/${OCAML_VERSION}
+ set(OCAML_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib/ocaml/${OCAML_VERSION}
CACHE PATH "install location for ocaml files"
)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|