diff options
author | William Wold <[email protected]> | 2019-01-26 04:06:13 -0500 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-01-29 15:20:59 +0100 |
commit | 62237a6aa91a89849b68583aae300dc8757a96d2 (patch) | |
tree | fd8dd1b5e43b5fdf1bbb90d86322f3cc29043e76 /applets/Makefile.am | |
parent | d71479299f7a134a2de6d187535edb3a04441095 (diff) | |
download | mate-panel-62237a6aa91a89849b68583aae300dc8757a96d2.tar.bz2 mate-panel-62237a6aa91a89849b68583aae300dc8757a96d2.tar.xz |
Applets: only compile X11 applets when X11 is enabled
Diffstat (limited to 'applets/Makefile.am')
-rw-r--r-- | applets/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/applets/Makefile.am b/applets/Makefile.am index e1e952db..bc2488f4 100644 --- a/applets/Makefile.am +++ b/applets/Makefile.am @@ -1,7 +1,11 @@ SUBDIRS = \ clock \ - fish \ - notification_area \ + fish + +if ENABLE_X11 +SUBDIRS += \ + notification_area \ wncklet +endif -include $(top_srcdir)/git.mk |