diff options
author | Ryan Bloom <rbb@apache.org> | 2000-12-04 16:08:02 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-12-04 16:08:02 +0100 |
commit | 67821c9cd0b0bb829655968c08015539a78288be (patch) | |
tree | 928b7ac8c6ce4e95d56be0cd4650052b61d6d319 /build | |
parent | Remove buff.c and buff.h. There are still a few files that rely on these, (diff) | |
download | apache2-67821c9cd0b0bb829655968c08015539a78288be.tar.xz apache2-67821c9cd0b0bb829655968c08015539a78288be.zip |
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
Diffstat (limited to 'build')
-rw-r--r-- | build/build.mk | 6 |
1 files changed, 6 insertions, 0 deletions
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: |