summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2014-01-24 14:08:16 -0500
committerRay Strode <rstrode@redhat.com>2014-01-24 14:08:16 -0500
commit785a0050c01567e3e9eaaf0534e7e52045fc4a9d (patch)
tree006eceaa2f7da1412aa972ee4e75907e8124cfa7
parent33b4e1535841553159efc2920cb2e6aa4e797ea4 (diff)
plymouthd: build with -rdynamic so built-in module works
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.
-rw-r--r--src/Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 152cd437..fc2f5da1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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)/\" \