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 /build/rpm/httpd.spec.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 'build/rpm/httpd.spec.in')
-rw-r--r-- | build/rpm/httpd.spec.in | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/build/rpm/httpd.spec.in b/build/rpm/httpd.spec.in index 332c2723bc..0fc1db57db 100644 --- a/build/rpm/httpd.spec.in +++ b/build/rpm/httpd.spec.in @@ -441,13 +441,13 @@ rm -rf $RPM_BUILD_ROOT %files tools %defattr(-,root,root) %{_sbindir}/ab -%{_sbindir}/htdbm -%{_sbindir}/htdigest -%{_sbindir}/htpasswd +%{_bindir}/firehose +%{_bindir}/htdbm +%{_bindir}/htdigest +%{_bindir}/htpasswd %{_sbindir}/logresolve %{_sbindir}/httxt2dbm %{_sbindir}/rotatelogs -%{_mandir}/man1/dbmmanage.1* %{_mandir}/man1/firehose.1* %{_mandir}/man1/htdbm.1* %{_mandir}/man1/htdigest.1* @@ -490,8 +490,9 @@ rm -rf $RPM_BUILD_ROOT %{_includedir}/httpd %{_sbindir}/apxs %{_sbindir}/checkgid -%{_sbindir}/dbmmanage +%{_bindir}/dbmmanage %{_sbindir}/envvars* +%{_mandir}/man1/dbmmanage.1* %{_mandir}/man8/apxs.8* %dir %{_libdir}/httpd/build %{_libdir}/httpd/build/*.mk |