1
0
Fork 0

Merge branch 'devel' of github.com:arangodb/arangodb into devel

* 'devel' of github.com:arangodb/arangodb:
  probably older cmakes don't like strequal that way
This commit is contained in:
Jan Christoph Uhde 2016-11-22 16:20:10 +01:00
commit db672b346b
1 changed files with 2 additions and 2 deletions

View File

@ -10,9 +10,9 @@ set(CPACK_RPM_USER_BINARY_SPECFILE "${CMAKE_CURRENT_BINARY_DIR}/arangodb.spec")
################################################################################
# deploy the Init script:
if (${RPM_DISTRO} STREQUAL "SUSE13")
if (RPM_DISTRO STREQUAL "SUSE13")
set(RPM_INIT_SCRIPT "${PROJECT_SOURCE_DIR}/Installation/rpm/rc.arangod.OpenSuSE_13")
elseif (${RPM_DISTRO} STREQUAL "SUSE")
elseif (RPM_DISTRO STREQUAL "SUSE")
set(RPM_INIT_SCRIPT "${PROJECT_SOURCE_DIR}/Installation/rpm/rc.arangod.OpenSuSE")
else () # fall back to centos:
set(RPM_INIT_SCRIPT "${PROJECT_SOURCE_DIR}/Installation/rpm/rc.arangod.Centos")