From: Jeff Trawick Date: Tue, 21 May 2002 11:42:34 +0000 (+0000) Subject: Make sure that the runtimedir is created by make install. X-Git-Tag: 2.0.37~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b234d2510d1389a9a84c2dd287b5d12c792e285;p=thirdparty%2Fapache%2Fhttpd.git Make sure that the runtimedir is created by make install. PR: 9233 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95200 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index ed4085dfac4..48399aa3a65 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 2.0.37 + *) Make sure that the runtime dir is created by make install. + PR 9233. [Jeff Trawick] + *) Fix an unusual set of ./configure arguments that could cause mod_http to be built as a DSO, which it currently doesn't support. PR 9244. diff --git a/Makefile.in b/Makefile.in index be40dc4bf76..c83ec890fce 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,6 +131,7 @@ install-cgi: install-other: @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir) + @test -d $(runtimedir) || $(MKINSTALLDIRS) $(runtimedir) @for ext in dll x; do \ file=apachecore.$$ext; \ if test -f $$file; then \