# HG changeset patch # User Ryan C. Gordon # Date 1254162118 0 # Node ID 42d28f92253ba21879642183bb99c714771c8fb5 # Parent 384315d1bfa54618d4a678e66feaf7bdc1a7227e Removed -rpath from link line. We don't need to look in the library's install dir for dependencies; They are all system libraries that should be in other path lists anyhow. Fixes Bugzilla #499. diff -r 384315d1bfa5 -r 42d28f92253b Makefile.in --- a/Makefile.in Mon Sep 28 18:16:48 2009 +0000 +++ b/Makefile.in Mon Sep 28 18:21:58 2009 +0000 @@ -48,7 +48,7 @@ LT_CURRENT = @LT_CURRENT@ LT_RELEASE = @LT_RELEASE@ LT_REVISION = @LT_REVISION@ -LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) +LT_LDFLAGS = -no-undefined -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)