Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 405767 | Differences between
and this patch

Collapse All | Expand All

(-)a/support/Makefile.in (-15 / +2 lines)
Lines 1-5 Link Here
1
DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \
1
DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \
2
	logresolve.pl phf_abuse_log.cgi split-logfile envvars-std
2
	logresolve.pl phf_abuse_log.cgi split-logfile 
3
3
4
CLEAN_TARGETS = suexec
4
CLEAN_TARGETS = suexec
5
5
Lines 16-40 Link Here
16
	@test -d $(DESTDIR)$(bindir) || $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
16
	@test -d $(DESTDIR)$(bindir) || $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
17
	@test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
17
	@test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
18
	@test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
18
	@test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir)
19
	@cp -p $(top_builddir)/server/httpd.exp $(DESTDIR)$(libexecdir)
19
	@for i in ; do \
20
	@for i in apxs dbmmanage; do \
21
	    if test -f "$(builddir)/$$i"; then \
22
	        cp -p $$i $(DESTDIR)$(bindir); \
23
	        chmod 755 $(DESTDIR)$(bindir)/$$i; \
24
	    fi ; \
25
	done
26
	@for i in apachectl; do \
27
	    if test -f "$(builddir)/$$i"; then \
20
	    if test -f "$(builddir)/$$i"; then \
28
	        cp -p $$i $(DESTDIR)$(sbindir); \
21
	        cp -p $$i $(DESTDIR)$(sbindir); \
29
	        chmod 755 $(DESTDIR)$(sbindir)/$$i; \
22
	        chmod 755 $(DESTDIR)$(sbindir)/$$i; \
30
	    fi ; \
23
	    fi ; \
31
	done
24
	done
32
	@if test -f "$(builddir)/envvars-std"; then \
33
	    cp -p envvars-std $(DESTDIR)$(sbindir); \
34
	    if test ! -f $(DESTDIR)$(sbindir)/envvars; then \
35
	        cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \
36
	    fi ; \
37
	fi
38
25
39
htpasswd_OBJECTS = htpasswd.lo
26
htpasswd_OBJECTS = htpasswd.lo
40
htpasswd: $(htpasswd_OBJECTS)
27
htpasswd: $(htpasswd_OBJECTS)

Return to bug 405767