From 507a09f953a52752f09a22e745eacdc79485f618 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 21 May 2002 11:42:34 +0000 Subject: [PATCH] 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 --- CHANGES | 3 +++ Makefile.in | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index ed4085dfac..48399aa3a6 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 be40dc4bf7..c83ec890fc 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 \ -- 2.50.1