From 15f82677a670a4344def5dc5aef1f92abc180ea3 Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Tue, 9 May 2017 19:31:38 +0200 Subject: [PATCH] build: Add missing SECCOMP_CFLAGS to test-seccomp and test-execute targets (#5924) --- Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.am b/Makefile.am index d565978..7f5e1c3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2139,6 +2139,10 @@ test_acl_util_LDADD = \ test_seccomp_SOURCES = \ src/test/test-seccomp.c +test_seccomp_CFLAGS = \ + $(AM_CFLAGS) \ + $(SECCOMP_CFLAGS) + test_seccomp_LDADD = \ libsystemd-shared.la \ $(SECCOMP_LIBS) @@ -2435,6 +2439,7 @@ test_execute_SOURCES = \ test_execute_CFLAGS = \ $(AM_CFLAGS) \ + $(SECCOMP_CFLAGS) \ $(MOUNT_CFLAGS) test_execute_LDADD = \ -- 2.7.4