|
本帖最後由 leonfast8 於 2012-11-4 20:20 編輯
老師好,我回家作 Redhat RH254 從page68~page72
key 那裡已經做完了,rpmbuild 也安裝完畢 開始給他package RPM 這部份的時候 當我開始Build的時候 出現錯誤訊息。
他的錯誤是再結圖三 問題是在以下程式紅字
這地方該怎麼解決?? 我都照課本的方式操作
[student@server12 ~]$ cat test.spec
Name: test
Version: 1.0
Release: 1%{?dist}
Summary: A test package
Group: Testing
License: GPL
URL: http://www.example.com/testing
Source0: %{name}-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: /bin/rm, /bin/mkdir, /bin/cp
Requires: /bin/bash, /bin/date
%description
A testing package meant to deploy a single file.
%prep
%setup -q
%build
#configure
#make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
#make install DESTDIR=$RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/local/bin
cp myscript $RPM_BUILD_ROOT/usr/local/bin
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
#%doc
%attr(0755,root,root) /usr/local/bin/myscript
%changelog
* The Nov 04 2012 Forrest <forrest@redhat.com> 1.0-1
- Initial RPM
- Added /usr/local/bin/myscript |
本帖子中包含更多資源
您需要 登錄 才可以下載或查看,沒有帳號?註冊
x
|