From ccec7732a738be3c0e1ee30268bcec9104a809cc Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Tue, 11 Feb 2014 17:23:22 -0500 Subject: [PATCH] calendar server: fix _LDFLAGS vs _LDADD mixup _LDFLAGS is for flags. _LDADD is for LIBS. https://bugzilla.gnome.org/show_bug.cgi?id=724184 --- src/Makefile-calendar-server.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile-calendar-server.am b/src/Makefile-calendar-server.am index 26d4b4142..41dced6f0 100644 --- a/src/Makefile-calendar-server.am +++ b/src/Makefile-calendar-server.am @@ -23,7 +23,7 @@ gnome_shell_calendar_server_CFLAGS = \ $(CALENDAR_SERVER_CFLAGS) \ $(NULL) -gnome_shell_calendar_server_LDFLAGS = \ +gnome_shell_calendar_server_LDADD = \ $(CALENDAR_SERVER_LIBS) \ $(NULL)