From 284b73bb41bf3042142512846308e189901c7137 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Sat, 26 Oct 2013 00:46:32 +0200 Subject: [PATCH] packages: ceph.spec.in is missing make as a build dependency On a virgin centos-6.4, after yum-builddep ceph and following http://ceph.com/docs/next/install/building-ceph/ instructions to: cd ceph ./autogen.sh ./configure make it fails because make is not installed. It probably is not a problem for most people because there are few developers who did not install make. Signed-off-by: Loic Dachary --- ceph.spec.in | 1 + 1 file changed, 1 insertion(+) diff --git a/ceph.spec.in b/ceph.spec.in index 059629d5e3983..a9c5dc3c74b79 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -29,6 +29,7 @@ Requires: util-linux Requires: hdparm Requires(post): binutils BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: libtool BuildRequires: boost-devel