diff options
author | Gary Lowell <glowell@inktank.com> | 2013-08-22 11:07:16 -0700 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-09-03 11:13:41 -0700 |
commit | f1507d23707e7929f7a55fe2ea9418dcc715d8b2 (patch) | |
tree | 720580679e7010713d59b845f8c9206f41c8b477 | |
parent | 65a10862feec199d14f17627d0c42fa7c85766fa (diff) | |
download | ceph-f1507d23707e7929f7a55fe2ea9418dcc715d8b2.tar.gz |
ceph.spec.in: Don't invoke debug_package macro on centos.
If the redhat-rpm-config package is installed, the debuginfo rpms will
be built by default. The build will fail when the package installed
and the specfile also invokes the macro.
Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
-rw-r--r-- | ceph.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ceph.spec.in b/ceph.spec.in index bb54d60378d..c920b322ed5 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -236,7 +236,7 @@ BuildRequires: java-devel %description -n cephfs-java This package contains the Java libraries for the Ceph File System. -%if (0%{?centos} || 0%{?opensuse} || 0%{?suse_version}) +%if 0%{?opensuse} || 0%{?suse_version}) %debug_package %endif |