From: Greg Ames Date: Fri, 19 Jul 2002 20:16:55 +0000 (+0000) Subject: fix a broken build when no /conf/ directory exists. X-Git-Tag: 2.0.40~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5f052205f9aee87b1604b7c8ad3c670c613cbeb;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/Makefile.in b/Makefile.in index 29d7437d0c6..f36f72ffa04 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; \