~ubuntu-branches/ubuntu/saucy/glaurung/saucy

« back to all changes in this revision

Viewing changes to src/Makefile

  • Committer: Package Import Robot
  • Author(s): Daniel T Chen
  • Date: 2011-09-16 15:37:11 UTC
  • Revision ID: package-import@ubuntu.com-20110916153711-339ktxnoewf12od3
Tags: 2.2-2ubuntu1
src/Makefile: Reorder placement of $LDFLAGS so that libs link
correctly with GCC 4.6. Fixes FTBFS. (LP: #770866)

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
###
54
54
 
55
55
$(EXE): $(OBJS)
56
 
        $(CXX) $(LDFLAGS) -o $@ $(OBJS)
 
56
        $(CXX) -o $@ $(OBJS) $(LDFLAGS)
57
57
 
58
58
.depend:
59
59
        $(CXX) -MM $(OBJS:.o=.cpp) > $@