include all example plugins in tarballs, but install only some
This commit is contained in:
parent
e21cc8accf
commit
e870ebb3d4
|
@ -8,7 +8,7 @@
|
|||
fi
|
||||
echo "define([AC_PACKAGE_VERSION], [${gajimversion}${hgversion}])" > m4/hgversion.m4
|
||||
|
||||
AM_ARGS="--add-missing --gnu --copy"
|
||||
AM_ARGS="--add-missing --gnu --copy -Wno-portability"
|
||||
CONF_ARGS=""
|
||||
if test x`uname -s 2>/dev/null` = 'xDarwin' -a -f /Library/Frameworks/GTK+.framework/Versions/Current/env; then
|
||||
. /Library/Frameworks/GTK+.framework/Versions/Current/env
|
||||
|
@ -36,6 +36,6 @@
|
|||
&& aclocal -I ./m4 \
|
||||
&& $LIBTOOLIZE --copy --force --automake \
|
||||
&& autoheader \
|
||||
&& autoconf \
|
||||
&& autoconf \
|
||||
&& automake ${AM_ARGS} \
|
||||
&& ./configure ${CONF_ARGS} $@
|
||||
|
|
|
@ -2,7 +2,14 @@ INCLUDES = \
|
|||
$(PYTHON_INCLUDES)
|
||||
|
||||
gajimpluginsdir = $(gajim_pluginsdir)
|
||||
nobase_dist_gajimplugins_PYTHON = \
|
||||
|
||||
installedplugins = acronyms_expander banner_tweaks ftp_manager length_notifier whiteboard
|
||||
|
||||
installedpluginsfiles = $(wildcard ${srcdir}/${p}/*.py ${srcdir}/${p}/manifest.ini ${srcdir}/${p}/*.ui ${srcdir}/${p}/*.png)
|
||||
|
||||
nobase_dist_gajimplugins_PYTHON = $(foreach p, ${installedplugins}, $(installedpluginsfiles))
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(srcdir)/*/*.py \
|
||||
$(srcdir)/*/manifest.ini \
|
||||
$(srcdir)/*/*.ui
|
||||
|
|
Loading…
Reference in New Issue