From 9bb78fedbc7f754d4a7e682ac94fab836310e1cf Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 28 Sep 2009 18:21:58 +0000 Subject: [PATCH] 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. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index dc716c5f7..b5859cd23 100644 --- a/Makefile.in +++ b/Makefile.in @@ -48,7 +48,7 @@ LT_AGE = @LT_AGE@ 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)