diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-03-15 12:28:56 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-03-15 19:15:25 +0100 |
commit | eeb9e2bdcc8001d77d2b81ad6e2275fe634c4469 (patch) | |
tree | 6b0f85876e88218469cf171cdeecc40fa5fd523f /cli | |
parent | f9c63bfa058bdab29e00f13a0bedf4b4af39797e (diff) |
build: end all multiline list variables with $(NULL)
So that appending a new item in the list only inserts one new line (i.e. the
last $(NULL) is the last item always).
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Makefile.am | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cli/Makefile.am b/cli/Makefile.am index 51d71c42..d2573dbc 100644 --- a/cli/Makefile.am +++ b/cli/Makefile.am @@ -7,7 +7,8 @@ mmcli_CPPFLAGS = \ -I$(top_builddir)/include \ -I$(top_srcdir)/libmm-glib \ -I${top_srcdir}/libmm-glib/generated \ - -I${top_builddir}/libmm-glib/generated + -I${top_builddir}/libmm-glib/generated \ + $(NULL) mmcli_SOURCES = \ mmcli.h \ @@ -29,12 +30,13 @@ mmcli_SOURCES = \ mmcli-bearer.c \ mmcli-sim.c \ mmcli-sms.c \ - mmcli-call.c + mmcli-call.c \ + $(NULL) mmcli_LDADD = \ $(MMCLI_LIBS) \ - $(top_builddir)/libmm-glib/libmm-glib.la - + $(top_builddir)/libmm-glib/libmm-glib.la \ + $(NULL) completiondir = $(datadir)/bash-completion/completions |