Skip to content

Commit 5969905

Browse files
Bug#28996703 LIBNDBCLIENT.SO IS MISSING IN FEW
PLATFORMS AT PB2 The dynamic variant of libndbclient, libndbclient.so is missing in the built packages from a few branches in PB2. This is due to the component name of the library - 'Development' being misspelled. This patch fixes that and a few more misspelled occurences. Change-Id: Ia0f0f0cf6ba9659ccfa48569aa7a5abeb65571f3
1 parent 00490dc commit 5969905

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

storage/ndb/include/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by
@@ -117,12 +117,12 @@ SET(NDB_MGMAPI_HEADERS
117117

118118
INSTALL(FILES ${NDB_GENERAL_HEADERS}
119119
DESTINATION ${INSTALL_INCLUDEDIR}/storage/ndb
120-
COMPONENT Developement)
120+
COMPONENT Development)
121121

122122
INSTALL(FILES ${NDB_NDBAPI_HEADERS}
123123
DESTINATION ${INSTALL_INCLUDEDIR}/storage/ndb/ndbapi
124-
COMPONENT Developement)
124+
COMPONENT Development)
125125

126126
INSTALL(FILES ${NDB_MGMAPI_HEADERS}
127127
DESTINATION ${INSTALL_INCLUDEDIR}/storage/ndb/mgmapi
128-
COMPONENT Developement)
128+
COMPONENT Development)

storage/ndb/src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2008, 2017, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by
@@ -183,7 +183,7 @@ SET_TARGET_PROPERTIES(ndbclient_so PROPERTIES
183183
SOVERSION ${NDB_SHARED_LIB_VERSION})
184184
MYSQL_INSTALL_TARGETS(ndbclient_so
185185
DESTINATION "${INSTALL_LIBDIR}"
186-
COMPONENT Developement)
186+
COMPONENT Development)
187187
# Build test program to check linking against ndclient_so
188188
ADD_EXECUTABLE(ndbclient_shared_link_test ndbclient_link_test.cpp)
189189
TARGET_LINK_LIBRARIES(ndbclient_shared_link_test ndbclient_so)

0 commit comments

Comments
 (0)