X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=Makefile.am;h=342116761e23b8b426ae4d939621f70ea4ac1209;hp=b63f9a053529d73a616fa0097f927e503b9ada1f;hb=7120511888321c40810a36c8da96c7d09e464f5b;hpb=d3b9e0ff4e9f1b0bb328dc57ca5507bac48a6615 diff --git a/Makefile.am b/Makefile.am index b63f9a053..342116761 100644 --- a/Makefile.am +++ b/Makefile.am @@ -222,7 +222,7 @@ define add-wants $(MKDIR_P) -m 0755 $$dir && \ cd $$dir && \ rm -f $$what && \ - for i in $$what; do ln -s ../$$i . || exit $$? ; done ) + for i in $$what; do $(LN_S) ../$$i . || exit $$? ; done ) endef install-directories-hook: @@ -240,7 +240,7 @@ define install-aliases $(MKDIR_P) /$(DESTDIR)$$dir && \ while [ -n "$$1" ]; do \ rm -f $(DESTDIR)$$dir/$$2 && \ - ln -s $$1 $(DESTDIR)$$dir/$$2 && \ + $(LN_S) $$1 $(DESTDIR)$$dir/$$2 && \ shift 2 || exit $$?; \ done endef @@ -1088,7 +1088,8 @@ noinst_tests += \ test-strip-tab-ansi \ test-cgroup-util \ test-prioq \ - test-fileio + test-fileio \ + test-time EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1197,6 +1198,15 @@ test_fileio_CFLAGS = \ test_fileio_LDADD = \ libsystemd-core.la +test_time_SOURCES = \ + src/test/test-time.c + +test_time_CFLAGS = \ + $(AM_CFLAGS) + +test_time_LDADD = \ + libsystemd-core.la + test_log_SOURCES = \ src/test/test-log.c @@ -3542,7 +3552,6 @@ pam_systemd_la_LDFLAGS = \ -export-symbols-regex '^pam_sm_.*' pam_systemd_la_LIBADD = \ - libsystemd-daemon.la \ libsystemd-audit.la \ libsystemd-dbus.la \ libsystemd-shared.la \