From d5f052205f9aee87b1604b7c8ad3c670c613cbeb Mon Sep 17 00:00:00 2001 From: Greg Ames Date: Fri, 19 Jul 2002 20:16:55 +0000 Subject: [PATCH] fix a broken build when no /conf/ directory exists. Submitted by: Karl Fogel Reviewed by: Greg Ames git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96132 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 29d7437d0c..f36f72ffa0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -28,7 +28,7 @@ include $(top_srcdir)/build/program.mk 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; \ -- 2.40.0