From 9c5a0380019ba16016708b4eb9031818830f8fb9 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 23 Aug 2018 12:45:14 +0200 Subject: [PATCH] MDEV-17040 sql/sql_yacc_orac.cc is included but sql/sql_yacc_ora.cc isn't included in source archive fix a packaging typo --- cmake/make_dist.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/make_dist.cmake.in b/cmake/make_dist.cmake.in index 43498f1f888..6fad17137fd 100644 --- a/cmake/make_dist.cmake.in +++ b/cmake/make_dist.cmake.in @@ -110,7 +110,7 @@ CONFIGURE_FILE(${CMAKE_BINARY_DIR}/sql/sql_yacc.cc CONFIGURE_FILE(${CMAKE_BINARY_DIR}/sql/sql_yacc_ora.hh ${PACKAGE_DIR}/sql/sql_yacc_ora.hh COPYONLY) CONFIGURE_FILE(${CMAKE_BINARY_DIR}/sql/sql_yacc_ora.cc - ${PACKAGE_DIR}/sql/sql_yacc_orac.cc COPYONLY) + ${PACKAGE_DIR}/sql/sql_yacc_ora.cc COPYONLY) # Add documentation, if user has specified where to find them IF(MYSQL_DOCS_LOCATION)