diff options
author | Ray Strode <rstrode@redhat.com> | 2010-10-11 10:33:37 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2010-10-11 10:33:37 -0400 |
commit | 34c6f34c6d53ec0e2dc58fabfcf412d34709605b (patch) | |
tree | 3f2f0bfb00fa32e3f44023c2bdff56643b8bcfdb /src/viewer | |
parent | 2ca39dacab7f80308769679556b4154f240c170f (diff) |
viewer: don't build viewer by default
The viewer is useful for seeing boot messages after boot up.
It does this by showing a notification icon in the event there
is a problem during boot.
Notification icons aren't as en vogue as they once were, however.
Ideally, we would have a more structured and semantically aware
way to deal with specific boot problems.
This commit turns the icon off by default. It can still be built
with a --with-log-viewer
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=30724
Reported By: William Jon McCann <william.jon.mccann@gmail.com>
Diffstat (limited to 'src/viewer')
-rw-r--r-- | src/viewer/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/viewer/Makefile.am b/src/viewer/Makefile.am index 1e652980..6fe36fd9 100644 --- a/src/viewer/Makefile.am +++ b/src/viewer/Makefile.am @@ -3,6 +3,7 @@ EXTRA_DIST= INCLUDES = -I$(top_srcdir) \ -I$(srcdir) +if WITH_LOG_VIEWER plymouth_log_viewerdir = $(bindir) plymouth_log_viewer_PROGRAMS = plymouth-log-viewer @@ -15,5 +16,6 @@ gdmautostartdir = $(datadir)/gdm/autostart/LoginWindow gdmautostart_DATA = plymouth-log-viewer.desktop EXTRA_DIST += plymouth-log-viewer.desktop endif +endif MAINTAINERCLEANFILES = Makefile.in |