diff options
author | Gary Lowell <glowell@inktank.com> | 2013-08-22 11:07:16 -0700 |
---|---|---|
committer | Gary Lowell <gary.lowell@inktank.com> | 2013-10-11 11:58:49 -0700 |
commit | 72ff9818a8bd35f48c10f6e6655f8d40b895e1d6 (patch) | |
tree | c84b9feb570c94147c6c36a9a7877c428fd41262 | |
parent | 09d258b70a28e5cea555b9d7e215fe41d6b84577 (diff) | |
download | ceph-72ff9818a8bd35f48c10f6e6655f8d40b895e1d6.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 a021db1f3de..2b37fe2c28a 100644 --- a/ceph.spec.in +++ b/ceph.spec.in @@ -227,7 +227,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 |