re-add a Makefile.am in plugins dir that includes nothing in the generated tarball, but that installs plugins in this directory.
This commit is contained in:
parent
a5b50465b1
commit
24cd5f30fa
|
@ -1,4 +1,4 @@
|
|||
SUBDIRS = src data po icons
|
||||
SUBDIRS = src data po icons plugins
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
|
|
|
@ -79,6 +79,7 @@ AC_CONFIG_FILES([
|
|||
scripts/gajim-remote:scripts/gajim.in
|
||||
scripts/gajim-history-manager:scripts/gajim.in
|
||||
po/Makefile.in
|
||||
plugins/Makefile
|
||||
])
|
||||
AC_OUTPUT
|
||||
echo "
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
INCLUDES = \
|
||||
$(PYTHON_INCLUDES)
|
||||
|
||||
gajimpluginsdir = $(gajim_pluginsdir)
|
||||
|
||||
dist_gajimplugins_PYTHON =
|
||||
|
||||
nobase_gajimplugins_DATA = \
|
||||
$(srcdir)/*/*.py \
|
||||
$(srcdir)/*/manifest.ini \
|
||||
$(srcdir)/*/*.ui \
|
||||
$(srcdir)/*/*.png
|
||||
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
Loading…
Reference in New Issue