summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-07-16 13:01:48 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-07-16 13:01:48 +0000
commit541fdacb3c9e853be2daa7b3871e5ba4b28bd6b8 (patch)
treefc8566f6c335b9306c4b7c138a5c4c9f35403fbb /Makefile.rules
parent1a396d37f6b3e875c942b7e9123b87f031da7397 (diff)
typo LDFAGS -> LDFLLAGS
detected by: noisy build on FreeBSD git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37719 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 4982b2d3b..7b4b93ac9 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -68,7 +68,7 @@ $(1): $(2)
@$$(HOST_CC) -o $$@ $$(CFLAGS) $$(LDFLAGS) $$^ $$(LIBS)
endef
-else
+else # noisy build
define ast_make_o_c
$(1): $(2)
@@ -92,7 +92,7 @@ endef
define ast_make_so_o
$(1): $(2)
- $$(CC) -o $$@ $$(LDFAGS) $$(SOLINK) $$^ $$(LIBS)
+ $$(CC) -o $$@ $$(LDFLAGS) $$(SOLINK) $$^ $$(LIBS)
endef
define ast_make_so_oo