diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2016-10-07 06:18:15 -0700 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2016-10-07 15:25:38 +0200 |
commit | 30d42f88ca7f1073c5bbc9d49fb9247da4fd7a1d (patch) | |
tree | 73c3c8b889ad45d045f192df39cf25603098175e | |
parent | 160b1f5e60600f60dcb45f64cf9e8cedabe1d378 (diff) |
activesync: fix packaging of activesyncd (FDO #98014)
The latest activesyncd contains GSettings schema files
which get installed by the top-level makefile, therefore
we have to install everything.
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
-rw-r--r-- | src/backends/activesync/activesync.am | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backends/activesync/activesync.am b/src/backends/activesync/activesync.am index b353775b..a44bbdff 100644 --- a/src/backends/activesync/activesync.am +++ b/src/backends/activesync/activesync.am @@ -27,7 +27,4 @@ src_backends_activesync_syncactivesync_la_DEPENDENCIES = src/syncevo/libsyncevol # activated by EASCLIENT_DEPENDENCIES: usually empty, unless --with-activesyncd-src is used $(src_backends_activesync_src) src/backends/activesync/ActiveSyncSourceRegister.cpp: $(EASCLIENT_DEPENDENCIES) $(EASCLIENT_DEPENDENCIES): $(LIBEASCLIENT_LA_DEPENDENCIES) - cd src/backends/activesync/activesyncd/build && $(MAKE) - for i in libeasaccount/src libeasclient eas-daemon/libeas libeastest/src eas-daemon/src; do \ - (cd src/backends/activesync/activesyncd/build/$$i && $(MAKE) DESTDIR= install) || exit 1; \ - done + cd src/backends/activesync/activesyncd/build && $(MAKE) && $(MAKE) DESTDIR= install |