diff options
author | Siraj Razick <siraj.razick@collabora.co.uk> | 2012-02-17 20:00:55 -0500 |
---|---|---|
committer | Olli Salli <olli.salli@collabora.co.uk> | 2012-02-22 20:43:52 +0200 |
commit | 6869cb46dad2e0cd447e3ffe232005bf48ae12f2 (patch) | |
tree | 693e02dd3b719413c189f767399f45b7647a744e /data | |
parent | b94f06b6b1f1a16ea574b5eebc019206d448a028 (diff) |
write-mgr-file: Use $(EXEEXT) when compiling for windows
If we don't append this to the bianry the build system will try to
recompile write-mgr-file again with the wrong parameters and the
build fails
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 6bc592c3..e0002ab6 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -16,7 +16,7 @@ org.freedesktop.Telepathy.ConnectionManager.salut.service: salut.service.in \ CLEANFILES = $(service_DATA) $(manager_DATA) $(manager_DATA): always-build - $(MAKE) -C ../src write-mgr-file - $(AM_V_GEN)../src/write-mgr-file > $@ + $(MAKE) -C ../src write-mgr-file$(EXEEXT) + $(AM_V_GEN)../src/write-mgr-file$(EXEEXT) > $@ .PHONY: always-build |