From 9f42a6349f95707784557b124ae3e7ab1b62ec67 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Thu, 21 Dec 2006 14:07:33 +0000 Subject: [PATCH] PROGRAM_SUFFIX represents a possible version suffix, better let it empty for now. Georg explication of how autotools handle that: configure --with-version-suffix=-1.5 results in a PROGRAM_SUFFIX of "-1.5". This is important for the name of the personal LyX dir, and the name of the executables if you want to install several LyX versions in parallel without interference. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16364 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/cmake/CMakeLists.txt b/development/cmake/CMakeLists.txt index 8cc28e8f24..cd8fe51155 100644 --- a/development/cmake/CMakeLists.txt +++ b/development/cmake/CMakeLists.txt @@ -85,7 +85,7 @@ endif(WIN32) set(LYX_DIR "${CMAKE_SOURCE_DIR}/../../lib") set(TOP_SRCDIR "${CMAKE_SOURCE_DIR}/../..") -set(PROGRAM_SUFFIX "${CMAKE_SOURCE_DIR}/bin") +set(PROGRAM_SUFFIX "") set(LOCALEDIR "${CMAKE_SOURCE_DIR}/../../lib/po") message("----- LYX_DIR : ${LYX_DIR}")