From 5bdf89f0c13eab1513d11b2e1950fba31479535d Mon Sep 17 00:00:00 2001 From: Ben Menadue Date: Fri, 17 May 2019 09:52:40 +1000 Subject: [PATCH 1/1] LU-12269 build: add value to definition of with_gss in spec rpmbuild currently fails when gss_keyring is enabled (which happens automatically if the right packages are installed). This is due to an ill-formed %define in lustre.spec.in that doesn't include the value to set the macro do. This patch updates this line to set the value to 1. Signed-off-by: Ben Menadue Change-Id: I2f52b19795091702622eb3b4c110f09eb80654db Reviewed-on: https://review.whamcloud.com/34892 Tested-by: Jenkins Reviewed-by: Minh Diep Tested-by: Maloo Reviewed-by: Jian Yu Reviewed-by: Li Dongyang Reviewed-by: Oleg Drokin --- lustre.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre.spec.in b/lustre.spec.in index a226d5a..d40c56d 100644 --- a/lustre.spec.in +++ b/lustre.spec.in @@ -21,7 +21,7 @@ # request gss_keyring we must enable gss core even if # the builder attempts to disable gss. %if %{with gss_keyring} - %define with_gss + %define with_gss 1 %endif %if %{without servers} -- 1.8.3.1