Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit 2290899

Browse files
authored
Merge pull request #3 from ipuustin/build-fix
build: fix Makefile.am LDADD.
2 parents 95e04ae + 235c65c commit 2290899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
sbin_PROGRAMS = groupcheck
22
groupcheck_SOURCES = groupcheck.c
33
groupcheck_CPPFLAGS = $(LIBSYSTEMD_CPPFLAGS)
4-
groupcheck_LDFLAGS = $(LIBSYSTEMD_LIBS)
4+
groupcheck_LDADD = $(LIBSYSTEMD_LIBS)
55

66
noinst_PROGRAMS = test_groups
77
test_groups_SOURCES = test_groups.c
88
test_groups_CPPFLAGS = $(LIBSYSTEMD_CPPFLAGS)
9-
test_groups_LDFLAGS = $(LIBSYSTEMD_LIBS)
9+
test_groups_LDADD = $(LIBSYSTEMD_LIBS)

0 commit comments

Comments
 (0)