From 6bfbb8b23979d275ca1f95c9a54ce5a01f551b52 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 27 Jun 2012 22:37:17 -0400 Subject: [PATCH] build: Use LDADD libraries to link with, not LDFLAGS This should fix the build with embedded glib. --- Makefile-triggers.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile-triggers.am b/Makefile-triggers.am index 69fc7a6c..dd3932aa 100644 --- a/Makefile-triggers.am +++ b/Makefile-triggers.am @@ -37,4 +37,4 @@ bin_PROGRAMS += ostree-run-triggers ostree_run_triggers_SOURCES = src/triggers/ostree-run-triggers.c ostree_run_triggers_CFLAGS = $(OT_INTERNAL_GIO_UNIX_CFLAGS) -ostree_run_triggers_LDFLAGS = $(OT_INTERNAL_GIO_UNIX_LIBS) +ostree_run_triggers_LDADD = $(OT_INTERNAL_GIO_UNIX_LIBS)