aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2004-11-09 13:04:32 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-11-09 13:04:32 +0800
commit6e0ede767d83116d1bb7bf21877c01f21f76f8cd (patch)
tree2f5fc3ba8fe5de6a51428a4e7119338c7dcb51e6
parent38302fac354e1aca92c4cd9d25aecb04c5c42f59 (diff)
downloadgsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar.gz
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar.bz2
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar.lz
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar.xz
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.tar.zst
gsoc2013-evolution-6e0ede767d83116d1bb7bf21877c01f21f76f8cd.zip
Add AC_SUBST for plugins_base also
2004-11-09 Rodney Dawes <dobey@novell.com> * configure.in: Add AC_SUBST for plugins_base also * plugins/Makefile.am: Add plugins_base to DIST_SUBDIRS so that we dist the plug-ins we actually build by default svn path=/trunk/; revision=27868
-rw-r--r--ChangeLog7
-rw-r--r--configure.in1
-rw-r--r--plugins/Makefile.am2
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b7e22ada9..2f894acb71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-11-09 Rodney Dawes <dobey@novell.com>
+
+ * configure.in: Add AC_SUBST for plugins_base also
+
+ * plugins/Makefile.am: Add plugins_base to DIST_SUBDIRS so that we
+ dist the plug-ins we actually build by default
+
2004-11-04 Not Zed <NotZed@Ximian.com>
* configure.in: added mailing-list-actions plugin.
diff --git a/configure.in b/configure.in
index 17a53c8183..d9a946fc64 100644
--- a/configure.in
+++ b/configure.in
@@ -1363,6 +1363,7 @@ xbase)
esac
AC_SUBST(plugins_enabled)
AC_SUBST(plugins_all)
+AC_SUBST(plugins_base)
if echo ${plugins_enabled} | grep -q "audio-inline"
then
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 68b2aace4e..e8cba7c235 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -1,2 +1,2 @@
SUBDIRS = $(plugins_enabled)
-DIST_SUBDIRS = $(plugins_all)
+DIST_SUBDIRS = $(plugins_base) $(plugins_all)