From: Ryan Bloom Date: Mon, 26 Nov 2001 21:32:56 +0000 (+0000) Subject: We must use absolute paths or we break VPATH builds. X-Git-Tag: 2.0.29~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05cfb6705d774ae28155541df1a816ad4fba4e54;p=apache We must use absolute paths or we break VPATH builds. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92183 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/config.m4 b/server/mpm/config.m4 index 8ca8ed9a08..5605b68e6a 100644 --- a/server/mpm/config.m4 +++ b/server/mpm/config.m4 @@ -22,7 +22,7 @@ if test "$apache_cv_mpm" = "worker" -o "$apache_cv_mpm" = "perchild"; then apache_cv_mpm=prefork fi fi -if test ! -f "server/mpm/$apache_cv_mpm/mpm.h"; then +if test ! -f "$abs_srcdir/server/mpm/$apache_cv_mpm/mpm.h"; then AC_MSG_ERROR(the selected mpm -- $apache_cv_mpm -- is not supported) fi