Skip to content

Commit

Permalink
Stop using -rpath when linking libmovit.
Browse files Browse the repository at this point in the history
This was from pre-libtool days, and makes no sense now. Plus it seems to have
no actual effect.
  • Loading branch information
sesse committed Mar 16, 2014
1 parent 28af8fc commit 05466cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ demo: libmovit.la $(DEMO_OBJS)

# The library itself.
libmovit.la: $(LIB_OBJS:.o=.lo)
$(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -rpath $(libdir) -version-info $(movit_ltversion) -o $@ $^ $(LDLIBS)
$(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -version-info $(movit_ltversion) -o $@ $^ $(LDLIBS)

%.lo: %.cpp
$(LIBTOOL) --mode=compile $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $<
Expand Down

0 comments on commit 05466cb

Please sign in to comment.