8000 The repo string for EE was incorrect and the same as CE (#15129) · open-bigdata/arangodb@437af9f · GitHub
[go: up one dir, main page]

Skip to content

Commit 437af9f

Browse files
fcellerKVS85
andauthored
The repo string for EE was incorrect and the same as CE (arangodb#15129)
* by mistake the wrong repo string was used * updated changelog * only use repo if building enterprise * Update CHANGELOG Co-authored-by: Vadim <vadim@arangodb.com>
1 parent ee98f5c commit 437af9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,9 @@ else ()
406406
set(HAVE_ARANGODB_BUILD_REPOSITORY "0")
407407
endif()
408408

409-
if (DEFINED GIT_EXE AND IS_DIRECTORY "${CMAKE_SOURCE_DIR}/enterprise/.git")
409+
if (DEFINED GIT_EXE AND USE_ENTERPRISE AND IS_DIRECTORY "${CMAKE_SOURCE_DIR}/enterprise/.git")
410410
execute_process(
411-
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
411+
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/enterprise
412412

413413
COMMAND ${GIT_EXE} describe --all --tags --long --dirty=-dirty
414414
OUTPUT_VARIABLE GIT_OUTPUT)

0 commit comments

Comments
 (0)
0