diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-21 02:57:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-21 02:57:35 +0200 |
commit | c24eb49e6aecd6de2ad450083e826d4c9d9c75b6 (patch) | |
tree | 6833f35a658d6427eb981b320df3c6913e8fc455 /Makefile.am | |
parent | 9d25f5ed7b80df732cf7842985aa9b243bcd2335 (diff) |
exec: extend variable substitution to support splitting variable values into seperate arguments
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
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 \ |