RPMビルドエラー:D:無料スコアボードが利用可能((nil))

RPMビルドエラー:D:無料スコアボードが利用可能((nil))

ビルドに問題があります。次のエラーで失敗します。

D:5月無料スコアボード((nil))

どういう意味ですか?以前はビルドで他のエラーを見たことがなかったので、情報が足りなくてむしろ混乱しています。

オペレーティングシステム:FC 8

編集:参考までにFC10、13ではうまく構築されています。

Edit2:情報が足りなくてすみません。私はApache - Axis2cで石鹸エンジンを構築しようとしています。そのためにRPMを作成しています。以下は仕様ファイルの詳細です。

define _axis_name axis2-c
%define _axis_version 1.0
%define _axis_release 1
%define _axis_prefix "/usr/local/Axis2C"


Name:           %{_axis_name}
Version:        %{_axis_version}
Release:        %{_axis_release}
Summary:        Axis2C C++ Webservices Framework

Group:          Apache
License:        GPL
URL:            http://axis.apache.org/axis2/c/core/
Source0:        %{_axis_name}-%{_axis_version}.tar.gz
BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)

BuildRequires:  expat expat-devel xerces-c xerces-c-devel httpd httpd-devel
Requires:       expat expat-devel xerces-c xerces-c-devel httpd httpd-devel

%description
* Fri Jan 21 2011 RM<xx@xxx>
- First Attempt to build Axis2C RPM's

%prep
%setup -q


%build
#%configure
#make %{?_smp_mflags}
%define AXISHOME %(echo ${AXIS2C_HOME})
./build.sh



%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
mkdir -p ${RPM_BUILD_ROOT}/etc/ld.so.conf.d
cp ${RPM_BUILD_DIR}/${RPM_PACKAGE_NAME}-${RPM_PACKAGE_VERSION}/axis2c.conf ${RPM_BUILD_ROOT}/etc/ld.so.conf.d/axis2c.conf

%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc
/etc/ld.so.conf.d/axis2c.conf
%{AXISHOME}/AUTHORS
%{AXISHOME}/COPYING
%{AXISHOME}/CREDITS
%{AXISHOME}/INSTALL
%{AXISHOME}/LICENSE
%{AXISHOME}/NEWS
%{AXISHOME}/NOTICE
%{AXISHOME}/axis2.xml
%{AXISHOME}/bin/axis2_http_server
.......

立てる:

rpmbuild -bs --nodeps /root/rpmbuild/SPECS/axis2c.spec
rpmbuild -vv --rebuild --target "i686" /root/rpmbuild/SRPMS/axis2-c-1.0-1.src.rpm

ベストアンサー1

"D: May free Score Board((nil))" エラーは有用な診断エラーではない可能性が高く、詳細な出力の最後の短縮だけです。

おすすめ記事