Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 18437 invoked by uid 500); 19 Jul 2002 20:10:56 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 18424 invoked from network); 19 Jul 2002 20:10:56 -0000 Date: Fri, 19 Jul 2002 14:59:12 -0500 (CDT) Message-Id: <200207191959.g6JJxCX11476@newton.ch.collab.net> From: Karl Fogel To: dev@httpd.apache.org, dev@subversion.tigris.org Subject: Re: gregames, are you sure about Makefile.in rev 1.122 ? Reply-To: kfogel@collab.net Emacs: the prosecution rests its case. X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > Here's a tentative patch. I'm testing this right now, will report if > it fixes the problem for me. Confirmed -- this fixed the problem. I don't have commit on httpd-2.0, so hope someone can apply this, thanks. -Karl > 2002-07-19 15:06 > > * Makefile.in (install-conf): Fix sense of test for confdir. > > Index: Makefile.in > =================================================================== > RCS file: /home/cvspublic/httpd-2.0/Makefile.in,v > retrieving revision 1.124 > diff -u -r1.124 Makefile.in > --- Makefile.in 19 Jul 2002 15:32:36 -0000 1.124 > +++ Makefile.in 19 Jul 2002 19:41:49 -0000 > @@ -28,7 +28,7 @@ > > install-conf: > @echo Installing configuration files ; \ > - if [ -d $(DESTDIR)$(sysconfdir) ]; then \ > + if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \ > $(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir) ; \ > fi ; \ > cd $(top_srcdir)/docs/conf; \