Skip to content

Commit c6935f3

Browse files
committed
Makefile.am: fix tmpfiles linking issues
Fix the following linking issues of tmpfiles: | exec.c:308: warning: stty is not implemented and will always fail | plugin.c:237: undefined reference to `run_parts' Signed-off-by: Ming Liu <[email protected]>
1 parent 8be7a46 commit c6935f3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/Makefile.am

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ sulogin_SOURCES = sulogin.c
4343
sulogin_CFLAGS = -W -Wall -Wextra -std=gnu99
4444
sulogin_LDADD = -lcrypt
4545

46-
tmpfiles_SOURCES = tmpfiles.c helpers.c util.c exec.c log.c \
47-
svc.c sig.c sm.c api.c mount.c service.c schedule.c cond.c cond-w.c pid.c plugin.c \
48-
utmp-api.c client.c cgroup.c mdadm.c tty.c iwatch.c conf.c devmon.c logrotate.c
46+
tmpfiles_SOURCES = tmpfiles.c helpers.c util.c exec.c log.c \
47+
svc.c sig.c sm.c api.c mount.c service.c \
48+
schedule.c cond.c cond-w.c pid.c plugin.c \
49+
utmp-api.c client.c cgroup.c mdadm.c tty.c \
50+
iwatch.c conf.c devmon.c logrotate.c stty.c \
51+
runparts.c
4952
tmpfiles_CFLAGS = -W -Wall -Wextra -std=gnu99 -D__FINIT__
5053
tmpfiles_CFLAGS += $(lite_CFLAGS) $(uev_CFLAGS)
5154
tmpfiles_LDADD = $(lite_LIBS) $(uev_LIBS)

0 commit comments

Comments
 (0)