Skip to content

Commit

Permalink
Merge pull request #283 from thinred/master
Browse files Browse the repository at this point in the history
Fix typo: LFLAGS => LDFLAGS
  • Loading branch information
eustas committed Dec 22, 2015
2 parents 90eb91b + 2ce1a1f commit 98ed7a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Makefile
Expand Up @@ -13,7 +13,7 @@ EXE_OBJS=$(patsubst %, %.o, $(EXECUTABLES))
all : $(EXECUTABLES)

$(EXECUTABLES) : $(EXE_OBJS) deps
$(CXX) $(LFLAGS) $(ENCOBJ) $(DECOBJ) $@.o -o $@
$(CXX) $(LDFLAGS) $(ENCOBJ) $(DECOBJ) $@.o -o $@

deps :
$(MAKE) -C $(BROTLI)/dec
Expand Down

0 comments on commit 98ed7a2

Please sign in to comment.