summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-01-03 16:43:24 -0500
committerRyan Lortie <desrt@desrt.ca>2014-01-04 13:42:05 -0500
commit8a64f228b6490705a57a793f56a052a72d272d7e (patch)
tree4e1b399630d5518f54850d087912fdc78a022914
parent3e801b4d67c10d716b747cb4334ab376aa114b49 (diff)
downloadbaobab-8a64f228b6490705a57a793f56a052a72d272d7e.tar.gz
baobab: link with -rdynamic
-export-dynamic is a libtool option and we're not using libtool here. -rdynamic is the proper option to pass to the C compiler to get this same behaviour. https://bugzilla.gnome.org/show_bug.cgi?id=721437
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 70deffa..08bbe25 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -47,7 +47,7 @@ AM_CFLAGS = \
-Wno-unused-variable \
$(NULL)
-baobab_LDFLAGS = -export-dynamic
+baobab_LDFLAGS = -rdynamic
baobab_LDADD = \
-lm \
$(BAOBAB_LIBS) \