summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-07-21 02:57:35 +0200
committerLennart Poettering <lennart@poettering.net>2010-07-21 02:57:35 +0200
commitc24eb49e6aecd6de2ad450083e826d4c9d9c75b6 (patch)
tree6833f35a658d6427eb981b320df3c6913e8fc455 /Makefile.am
parent9d25f5ed7b80df732cf7842985aa9b243bcd2335 (diff)
exec: extend variable substitution to support splitting variable values into seperate arguments
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am12
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 94ae6af352..4dcecc5c7f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -77,7 +77,8 @@ noinst_PROGRAMS = \
test-ns \
test-loopback \
test-daemon \
- test-cgroup
+ test-cgroup \
+ test-env-replace
if HAVE_PAM
pamlib_LTLIBRARIES = \
@@ -446,6 +447,15 @@ test_cgroup_CFLAGS = \
test_cgroup_LDADD = \
libsystemd-basic.la
+test_env_replace_SOURCES = \
+ src/test-env-replace.c
+
+test_env_replace_CFLAGS = \
+ $(AM_CFLAGS)
+
+test_env_replace_LDADD = \
+ libsystemd-basic.la
+
systemd_logger_SOURCES = \
src/logger.c \
src/sd-daemon.c \