From a0181133fe5100531f7a1b7daff7f565d4ce9493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 5 Jan 2017 22:42:56 +0200 Subject: [PATCH] Only install /var/lib/maxscale for core package All RPM packages tried to install the /var/lib/maxscale directory when they shouldn't have. --- cmake/package_rpm.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/package_rpm.cmake b/cmake/package_rpm.cmake index 444a32def..8ed8173e9 100644 --- a/cmake/package_rpm.cmake +++ b/cmake/package_rpm.cmake @@ -35,4 +35,4 @@ endif() message(STATUS "Generating RPM packages") # Installing this prevents RPM from deleting the /var/lib/maxscale folder -install(DIRECTORY DESTINATION ${MAXSCALE_VARDIR}/lib/maxscale) +install(DIRECTORY DESTINATION ${MAXSCALE_VARDIR}/lib/maxscale COMPONENT core)