summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Granseuer <jensgr@gmx.net>2008-03-24 17:06:05 +0000
committerJens Granseuer <jensg@src.gnome.org>2008-03-24 17:06:05 +0000
commitd93da0ef9a5e3e62f0b4496b5e6db5454d2573b1 (patch)
tree743fd066a107752690a1448e18a1eec67b308544
parentf45f4a1d8ec54bbf934aaf7455757d8d22ba0385 (diff)
downloadgnome-settings-daemon-d93da0ef9a5e3e62f0b4496b5e6db5454d2573b1.tar.gz
remove NULL definition so authors using this as the base for their own
2008-03-24 Jens Granseuer <jensgr@gmx.net> * plugins/dummy/Makefile.am: remove NULL definition so authors using this as the base for their own plugins don't get strange ideas svn path=/trunk/; revision=226
-rw-r--r--ChangeLog5
-rw-r--r--plugins/dummy/Makefile.am30
2 files changed, 15 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 46013d24..fd4c3f6b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-24 Jens Granseuer <jensgr@gmx.net>
+
+ * plugins/dummy/Makefile.am: remove NULL definition so authors using
+ this as the base for their own plugins don't get strange ideas
+
2008-03-20 William Jon McCann <jmccann@redhat.com>
* plugins/media-keys/Makefile.am:
diff --git a/plugins/dummy/Makefile.am b/plugins/dummy/Makefile.am
index e9729c94..f22e81ea 100644
--- a/plugins/dummy/Makefile.am
+++ b/plugins/dummy/Makefile.am
@@ -1,15 +1,11 @@
-NULL =
-
plugin_LTLIBRARIES = \
- libdummy.la \
- $(NULL)
+ libdummy.la
libdummy_la_SOURCES = \
- gsd-dummy-plugin.h \
- gsd-dummy-plugin.c \
- gsd-dummy-manager.h \
gsd-dummy-manager.c \
- $(NULL)
+ gsd-dummy-manager.h \
+ gsd-dummy-plugin.c \
+ gsd-dummy-plugin.h
libdummy_la_CPPFLAGS = \
-I$(top_srcdir)/gnome-settings-daemon \
@@ -21,29 +17,23 @@ libdummy_la_CFLAGS = \
$(AM_CFLAGS)
libdummy_la_LDFLAGS = \
- $(GSD_PLUGIN_LDFLAGS) \
- $(NULL)
+ $(GSD_PLUGIN_LDFLAGS)
libdummy_la_LIBADD = \
- $(SETTINGS_PLUGIN_LIBS) \
- $(NULL)
+ $(SETTINGS_PLUGIN_LIBS)
plugin_in_files = \
- dummy.gnome-settings-plugin.in \
- $(NULL)
+ dummy.gnome-settings-plugin.in
plugin_DATA = $(plugin_in_files:.gnome-settings-plugin.in=.gnome-settings-plugin)
EXTRA_DIST = \
- $(plugin_in_files) \
- $(NULL)
+ $(plugin_in_files)
CLEANFILES = \
- $(plugin_DATA) \
- $(NULL)
+ $(plugin_DATA)
DISTCLEANFILES = \
- $(plugin_DATA) \
- $(NULL)
+ $(plugin_DATA)
@GSD_INTLTOOL_PLUGIN_RULE@