|
From: <ai...@us...> - 2013-11-06 00:39:18
|
Revision: 12665
http://sourceforge.net/p/plplot/code/12665
Author: airwin
Date: 2013-11-06 00:39:14 +0000 (Wed, 06 Nov 2013)
Log Message:
-----------
Move back to using a common install prefix for version 3 and version 4
of itcl and friends since there is no practical benefit to a separate
version 3 install prefix (you still have to use versioned package
names) and that separate version 3 install prefix also has the
drawback that you have to set auto_path appropriately to find it.
Modified Paths:
--------------
trunk/cmake/build_projects/itcl3/bp.cmake
Modified: trunk/cmake/build_projects/itcl3/bp.cmake
===================================================================
--- trunk/cmake/build_projects/itcl3/bp.cmake 2013-11-06 00:35:15 UTC (rev 12664)
+++ trunk/cmake/build_projects/itcl3/bp.cmake 2013-11-06 00:39:14 UTC (rev 12665)
@@ -83,7 +83,11 @@
set(ITCL3_ENABLE_64_BIT --enable-64bit)
endif(BP_HAVE_64_BIT_OS)
-set(INCRTCL3_PREFIX ${BP_CMAKE_INSTALL_PREFIX}/lib/incrtcl3)
+# This variable provides the opportunity to set an alternative install
+# prefix to distinguish what files are installed by version 3 of itcl
+# and friends from what is installed by version 4 of itcl and friends.
+# But currently just use the ordinary install location.
+set(INCRTCL3_PREFIX ${BP_CMAKE_INSTALL_PREFIX})
ExternalProject_Add(
build_${BP_PACKAGE}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|