From 4644272a70d0a22bb2a841dec06056cf0c439d65 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Sun, 11 Nov 2012 08:38:41 +0000 Subject: [PATCH] AM_LIBADD is NOT an automake variable, confusing (and stupid) though that may seem! this fixes pretty much all modules which were previously broken. spankies! SVN revision: 79109 --- src/modules/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/Makefile.am b/src/modules/Makefile.am index 78789fa50..0cd9e21b7 100644 --- a/src/modules/Makefile.am +++ b/src/modules/Makefile.am @@ -14,7 +14,7 @@ AM_CPPFLAGS = -I. \ -I$(top_builddir)/src/bin \ -I$(top_srcdir)/src/modules AM_CFLAGS = @e_cflags@ -AM_LIBADD = @e_libs@ @dlopen_libs@ +LIBS += @e_libs@ @dlopen_libs@ EDJE_CC = $(EDJE_CC_$(V)) EDJE_CC_ = $(EDJE_CC_$(AM_DEFAULT_VERBOSITY))