diff options
| author | Ray Strode <rstrode@redhat.com> | 2007-06-08 14:02:28 -0400 |
|---|---|---|
| committer | Ray Strode <rstrode@redhat.com> | 2007-06-08 14:02:28 -0400 |
| commit | 8ca9182bdc9867460ae19c1174c53fd0f46ca9a0 (patch) | |
| tree | 52daa38ed2ba161adab125ec8360b94d6f70fd17 /src/splash-plugins | |
| parent | 8e134fc182352f80617d6f8c1468baea84e98918 (diff) | |
look for images in /usr/share/plymouth
Diffstat (limited to 'src/splash-plugins')
| -rw-r--r-- | src/splash-plugins/fedora-fade-in/Makefile.am | 2 | ||||
| -rw-r--r-- | src/splash-plugins/fedora-fade-in/fedora-fade-in.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/splash-plugins/fedora-fade-in/Makefile.am b/src/splash-plugins/fedora-fade-in/Makefile.am index 9af28c7..f877dc4 100644 --- a/src/splash-plugins/fedora-fade-in/Makefile.am +++ b/src/splash-plugins/fedora-fade-in/Makefile.am @@ -7,7 +7,7 @@ INCLUDES = -I$(top_srcdir) \ plugindir = $(libdir)/plymouth plugin_LTLIBRARIES = fedora-fade-in.la -fedora_fade_in_la_CFLAGS = $(PLYMOUTH_CFLAGS) +fedora_fade_in_la_CFLAGS = $(PLYMOUTH_CFLAGS) -DPLYMOUTH_IMAGE_DIR=\"$(datadir)/plymouth/\" fedora_fade_in_la_LDFLAGS = -module -avoid-version -export-dynamic fedora_fade_in_la_LIBADD = $(PLYMOUTH_LIBS) ../../libply/libply.la fedora_fade_in_la_SOURCES = $(srcdir)/../ply-boot-splash-plugin.h \ diff --git a/src/splash-plugins/fedora-fade-in/fedora-fade-in.c b/src/splash-plugins/fedora-fade-in/fedora-fade-in.c index 6d8f2a5..fc33571 100644 --- a/src/splash-plugins/fedora-fade-in/fedora-fade-in.c +++ b/src/splash-plugins/fedora-fade-in/fedora-fade-in.c @@ -83,8 +83,8 @@ create_plugin (void) plugin->start_time = 0.0; plugin->frame_buffer = ply_frame_buffer_new (NULL); - plugin->logo_image = ply_image_new ("/booting.png"); - plugin->star_image = ply_image_new ("/star.png"); + plugin->logo_image = ply_image_new (PLYMOUTH_IMAGE_DIR "fedora-logo.png"); + plugin->star_image = ply_image_new (PLYMOUTH_IMAGE_DIR "star.png"); plugin->stars = ply_list_new (); return plugin; |
