Blame SOURCES/0013-BUILD-Fix-automake-warning.patch

905b4d
From 37d4520aea8d02701edc7a2c4d1407430b22860c Mon Sep 17 00:00:00 2001
905b4d
From: Lukas Slebodnik <lslebodn@redhat.com>
905b4d
Date: Tue, 21 Oct 2014 19:31:24 +0200
905b4d
Subject: [PATCH 13/22] BUILD: Fix automake warning
905b4d
905b4d
src/tests/cwrap/Makefile.am:45: warning: check_PROGRAMS was already
905b4d
        defined in condition TRUE, which includes condition HAVE_CMOCKA
905b4d
         and HAVE_NSS_WRAPPER and HAVE_UID_WRAPPER ...
905b4d
src/tests/cwrap/Makefile.am:41: ... 'check_PROGRAMS' previously defined here
905b4d
905b4d
This patch also replace '\t' with spaces
905b4d
905b4d
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
905b4d
---
905b4d
 src/tests/cwrap/Makefile.am | 8 ++++----
905b4d
 1 file changed, 4 insertions(+), 4 deletions(-)
905b4d
905b4d
diff --git a/src/tests/cwrap/Makefile.am b/src/tests/cwrap/Makefile.am
905b4d
index 28d60e7f5bc346543f51740ec4b2781a99a48909..d1f0e9e1b999814d8081af36f82e94f638452da4 100644
905b4d
--- a/src/tests/cwrap/Makefile.am
905b4d
+++ b/src/tests/cwrap/Makefile.am
905b4d
@@ -42,10 +42,10 @@ check_PROGRAMS =
905b4d
 if HAVE_CMOCKA
905b4d
 if HAVE_NSS_WRAPPER
905b4d
 if HAVE_UID_WRAPPER
905b4d
-check_PROGRAMS = \
905b4d
-	become_user-tests \
905b4d
-	server-tests \
905b4d
-	$(NULL)
905b4d
+check_PROGRAMS += \
905b4d
+    become_user-tests \
905b4d
+    server-tests \
905b4d
+    $(NULL)
905b4d
 endif # HAVE_UID_WRAPPER
905b4d
 endif # HAVE_NSS_WRAPPER
905b4d
 endif # HAVE_CMOCKA
905b4d
-- 
905b4d
1.9.3
905b4d