From 20c45bdd46a2055a6672c33187b8fbcc1e298933 Mon Sep 17 00:00:00 2001 From: yjp Date: Tue, 3 Sep 2013 11:19:34 -0500 Subject: [PATCH] LU-3872 tests: Fix rpmlint error in lustre/tests/Makefile.am This patch is to fix the file permission of the file, lustre/tests/clientapi/simple_test.c, in lustre/tests/Makefile.am, which caused the rpmilnt check to fail with error: "E: spurious-executable-perm (Badness: 50)". The Makefile.am has simple_test.c as scripts (nobase_noinst_SCRIPTS), so it is executable. It should be "data" (nobase_noinst_DATA) which is installed 644. Signed-off-by: Young Jong Pao Change-Id: I83d692bccf8feba48b281a34636f6fd8ec2297f6 Reviewed-on: http://review.whamcloud.com/7537 Reviewed-by: Andreas Dilger Reviewed-by: Bobbie Lind Tested-by: Hudson Tested-by: Maloo --- lustre/tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/Makefile.am b/lustre/tests/Makefile.am index 57ff236..3e29316 100644 --- a/lustre/tests/Makefile.am +++ b/lustre/tests/Makefile.am @@ -44,12 +44,12 @@ nobase_noinst_SCRIPTS += racer/file_link.sh racer/file_rename.sh racer/file_syml nobase_noinst_SCRIPTS += racer/dir_remote.sh nobase_noinst_SCRIPTS += rmtacl/make-tree rmtacl/run nobase_noinst_SCRIPTS += posix/posix.cfg -nobase_noinst_SCRIPTS += clientapi/simple_test.c nobase_noinst_DATA = acl/cp.test acl/getfacl-noacl.test acl/inheritance.test nobase_noinst_DATA += acl/misc.test acl/permissions.test acl/setfacl.test nobase_noinst_DATA += rmtacl/misc.test rmtacl/permissions.test nobase_noinst_DATA += rmtacl/setfacl.test rmtacl/cp.test nobase_noinst_DATA += rmtacl/getfacl-noacl.test rmtacl/inheritance.test +nobase_noinst_DATA += clientapi/simple_test.c EXTRA_DIST = $(noinst_SCRIPTS) $(noinst_DATA) \ $(nobase_noinst_SCRIPTS) $(nobase_noinst_DATA) -- 1.8.3.1