From b0272c1d37a2dc94c9712f9a100cbc3b056ce69d Mon Sep 17 00:00:00 2001 From: "Victor J. Orlikowski" Date: Fri, 8 Jun 2001 02:13:18 +0000 Subject: [PATCH] (A few) Small changes to pass full paths instead of relatives. One relative left; not sure whether to change it too or not. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89302 13f79535-47bb-0310-9956-ffa450edef68 --- server/Makefile.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/server/Makefile.in b/server/Makefile.in index 6f983fab489..0c4f03d008b 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -30,12 +30,13 @@ test_char.h: gen_test_char util.lo: test_char.h -EXPORT_FILES = ../srclib/apr/apr.exports ../srclib/apr-util/aprutil.exports \ +EXPORT_FILES = $(top_srcdir)/srclib/apr/apr.exports \ + $(top_srcdir)/srclib/apr-util/aprutil.exports \ $(TARGET_EXPORTS) delete-exports: @if test -f $(TARGET_EXPORTS); then \ - headers="`find ../include/*.h -newer $(TARGET_EXPORTS)`" ; \ + headers="`find $(top_srcdir)/include/*.h -newer $(TARGET_EXPORTS)`" ; \ if test -n "$$headers"; then \ echo Found newer headers. Will rebuild $(TARGET_EXPORTS). ; \ echo rm -f $(TARGET_EXPORTS) ; \ @@ -50,7 +51,7 @@ $(TARGET_EXPORTS): $(top_srcdir)/os/$(OS_DIR)/*.h > $@ exports.c: $(EXPORT_FILES) - (cat $(EXPORT_FILES) | ../build/buildexports.sh ..) > $@ + (cat $(EXPORT_FILES) | $(top_srcdir)/build/buildexports.sh ..) > $@ # wtf does this have to be explicit???? exports.lo: exports.c -- 2.47.2