summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2011-06-15 10:30:13 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2011-07-29 11:07:49 +0100
commitb643d18a36de5b23747e4b4f37de0961a2477a41 (patch)
treea321ac0f2aab082790468027a8866b395ff6f3a0
parent16aae2855dacdfacf453598c54ebfe47e790b27e (diff)
downloaddbus-b643d18a36de5b23747e4b4f37de0961a2477a41.tar.gz
tools: put bin_PROGRAMS one per line, eliminate unnecessary variable
-rw-r--r--tools/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 45921741..6b74d4bb 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -5,13 +5,19 @@ INCLUDES=-I$(top_srcdir) $(DBUS_X_CFLAGS) -DDBUS_LOCALEDIR=\"@EXPANDED_DATADIR@/
# if assertions are enabled, improve backtraces
AM_LDFLAGS = @R_DYNAMIC_LDFLAG@
-extra_bin_programs=
+bin_PROGRAMS = \
+ dbus-launch \
+ dbus-monitor \
+ dbus-send \
+ $(NULL)
+
if DBUS_UNIX
-extra_bin_programs += dbus-cleanup-sockets dbus-uuidgen
+bin_PROGRAMS += \
+ dbus-cleanup-sockets \
+ dbus-uuidgen \
+ $(NULL)
endif
-bin_PROGRAMS=dbus-launch dbus-send dbus-monitor $(extra_bin_programs)
-
dbus_send_SOURCES= \
dbus-print-message.c \
dbus-print-message.h \