]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
plymouthd: build with -rdynamic so built-in module works
authorRay Strode <rstrode@redhat.com>
Fri, 24 Jan 2014 19:08:16 +0000 (14:08 -0500)
committerRay Strode <rstrode@redhat.com>
Fri, 24 Jan 2014 19:08:16 +0000 (14:08 -0500)
The details plugin is "built in" to the plymouthd binary, so
it's always available even if the details module isn't installed
(say /usr isn't mounted yet or something)

Unfortunately, this feature isn't working because plymouthd isn't
built with -rdynamic (except for in my local CFLAGS).

This commit fixes the makefile goo accordingly.

src/Makefile.am

index 152cd437b859b7d69a46c283816ed0285ce9fdc9..fc2f5da1e9f423d635e7c70092c858aa7f35c4c9 100644 (file)
@@ -15,6 +15,7 @@ plymouthdbindir = $(plymouthdaemondir)
 plymouthdbin_PROGRAMS = plymouthd
 
 plymouthd_CFLAGS = $(PLYMOUTH_CFLAGS)                                         \
+                  -rdynamic                                                  \
                   -DPLYMOUTH_PLUGIN_PATH=\"$(PLYMOUTH_PLUGIN_PATH)\"         \
                   -DPLYMOUTH_THEME_PATH=\"$(PLYMOUTH_THEME_PATH)/\"          \
                   -DPLYMOUTH_POLICY_DIR=\"$(PLYMOUTH_POLICY_DIR)/\"          \