From: Ryan Bloom Date: Fri, 28 Apr 2000 00:02:30 +0000 (+0000) Subject: This stops Apache 2.0 from trying to compile the server when we run X-Git-Tag: APACHE_2_0_ALPHA_3~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65a47d024249c58c56d7ac80c3cc0cd5ea635d5d;p=thirdparty%2Fapache%2Fhttpd.git This stops Apache 2.0 from trying to compile the server when we run make install. We never used to build the server when installing in the 1.3 tree, so I'm going back to that behavior. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85067 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/rules.mk b/build/rules.mk index 84607fdc6fb..779c3bdf9c5 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -110,7 +110,7 @@ top_builddir = $(DEPTH) all: all-recursive -install: install-recursive +install: install-p distclean-recursive depend-recursive clean-recursive all-recursive install-recursive: @otarget=`echo $@|sed s/-recursive//`; \ @@ -130,7 +130,7 @@ distclean-recursive depend-recursive clean-recursive all-recursive install-recur fi all-p: $(targets) -install-p: $(targets) $(install_targets) +install-p: $(install_targets) @if test -n '$(PROGRAMS)'; then \ test -d $(bindir) || $(mkinstalldirs) $(bindir); \ for i in "$(PROGRAMS)"; do \