From: Steinar H. Gunderson Date: Sun, 16 Mar 2014 19:12:11 +0000 (+0100) Subject: Stop using -rpath when linking libmovit. X-Git-Tag: 1.0~3 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=05466cbaae2befac3d3ab8bbba614bc08646d3f2;hp=28af8fc2975dd3ea2e202da283a1b52c685cd62e Stop using -rpath when linking libmovit. This was from pre-libtool days, and makes no sense now. Plus it seems to have no actual effect. --- diff --git a/Makefile.in b/Makefile.in index 7181a1d..f82be17 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 $<