diff options
author | Evgeni Golov <evgeni@debian.org> | 2012-06-10 09:32:04 +0200 |
---|---|---|
committer | Evgeni Golov <evgeni@debian.org> | 2012-06-10 09:32:04 +0200 |
commit | 086dae17154b4da70d39cbf62a4cdd766ea1b132 (patch) | |
tree | 8ea6c510637be4af5f47c727d1e94f4166ea0976 /bindings | |
parent | 0bf6adacf509aff960b1f450e4c7f01c3f4ca090 (diff) | |
download | libayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.tar.gz libayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.tar.bz2 libayatana-appindicator-086dae17154b4da70d39cbf62a4cdd766ea1b132.zip |
make building mono extension optional, so we can build on archs that do not have mono
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 8e621e4..d1f6d73 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -1,10 +1,12 @@ if USE_GTK3 SUBDIRS = \ - mono \ vala else SUBDIRS = \ - mono \ python \ vala endif + +if HAS_MONO +SUBDIRS += mono +endif |