8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00

[build] [cmake] Fix issue with PATH on linux.

This commit is contained in:
egorpugin 2015-02-12 15:50:35 +00:00
parent 23d2f24d25
commit 38a8739441
2 changed files with 3 additions and 3 deletions

View File

@ -264,8 +264,8 @@ function(create_command command type out)
set(dir ${boot_dir})
endif()
set_win32(env "PATH=%PATH%\;${dir}")
set_unix (env "PATH=$PATH:${dir}/bin")
set_win32(env "PATH=${dir}\;%PATH%")
set_unix (env "PATH=${dir}/bin:$PATH")
set(env "${env}"
FIREBIRD=${dir}
)

View File

@ -347,7 +347,7 @@ if (APPLE)
endif()
add_library (common ${common_src} ${common_os_src} ${common_include})
target_link_libraries (common PRIVATE ${LIB_mpr})
target_link_libraries (common ${LIB_mpr})
################################################################################