From 67821c9cd0b0bb829655968c08015539a78288be Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Mon, 4 Dec 2000 15:08:02 +0000 Subject: [PATCH] Add a test to buildconf to ensure that APR has been checked out. If it isn't there, we output a message giving the public CVS root. Submitted by: Roy Fielding git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87173 13f79535-47bb-0310-9956-ffa450edef68 --- build/build.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/build.mk b/build/build.mk index b5dbb907f2..c6e3332e53 100644 --- a/build/build.mk +++ b/build/build.mk @@ -61,6 +61,12 @@ STAMP = buildmk.stamp all: $(STAMP) generated_lists + @if [ ! -d lib/apr ]; then \ + echo "APR not found."; \ + echo "Please check-out a working version of APR, the anonymous"; \ + echo "CVS root is :pserver:anoncvs@www.apache.org:/home/cvspublic"; \ + exit 1; \ + fi @$(MAKE) AMFLAGS=$(AMFLAGS) -s -f build/build2.mk generated_lists: -- 2.40.0