diff options
author | Graham Leggett <minfrin@apache.org> | 2011-12-19 18:00:49 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2011-12-19 18:00:49 +0100 |
commit | 2cb5dbf51173b720e580412e590c438d5969180f (patch) | |
tree | ac27c12619512e57f011ca7a917a89f9fbfeb172 /Makefile.in | |
parent | Fix warning: variable 'rv' set but not used. (diff) | |
download | apache2-2cb5dbf51173b720e580412e590c438d5969180f.tar.xz apache2-2cb5dbf51173b720e580412e590c438d5969180f.zip |
Distinguish properly between the bindir and sbindir directories when
installing binaries. Previously all binaries were silently installed to
sbindir, whether they were system administration commands or not.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1220846 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 9311dff592..940d037efb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,8 +12,8 @@ PROGRAM_DEPENDENCIES = \ $(MPM_LIB) \ os/$(OS_DIR)/libos.la -PROGRAMS = $(PROGRAM_NAME) -TARGETS = $(PROGRAMS) $(shared_build) $(other_targets) +sbin_PROGRAMS = $(PROGRAM_NAME) +TARGETS = $(sbin_PROGRAMS) $(shared_build) $(other_targets) INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \ install-other install-cgi install-include install-suexec install-build \ install-man |