From: David Reid Date: Fri, 31 Aug 2001 09:12:10 +0000 (+0000) Subject: Use the full path for libraries. (This has been in my tree for ages...) X-Git-Tag: 2.0.26~360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b7e6c81ef98d6c0f7a82dca05d66eaf56bde3f5;p=apache Use the full path for libraries. (This has been in my tree for ages...) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90843 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/Makefile.in b/test/Makefile.in index 7d0a9b0ace..a4dccbde35 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -6,8 +6,9 @@ TARGETS = PROGRAMS = PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) -PROGRAM_DEPENDENCIES = ../srclib/apr-util/libaprutil.la \ - ../srclib/apr/libapr.la +PROGRAM_DEPENDENCIES = \ + $(top_srcdir)/srclib/apr-util/libaprutil.la \ + $(top_srcdir)/srclib/apr/libapr.la include $(top_srcdir)/build/rules.mk