mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-09 04:48:08 +02:00
look for images in /usr/share/plymouth
This commit is contained in:
parent
8e134fc182
commit
8ca9182bdc
2 changed files with 3 additions and 3 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue