* avrdude.spec.in: Fix broken rpmbuild on RedHat-9.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@347 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Theodore A. Roth 2003-08-28 04:43:50 +00:00
parent d3477ceaef
commit afc6a38ba3
2 changed files with 22 additions and 7 deletions

View File

@ -1,11 +1,15 @@
2003-08-27 Theodore A. Roth <troth@openavr.org>
* avrdude.spec.in: Fix broken rpmbuild on RedHat-9.
2003-08-25 Eric B. Weddington <eric@ecentral.com>
* fileio.c:
* main.c:
* ppiwin.c:
* ser_posix.c:
* stk500.c:
Minor code cleanup to remove warnings.
* fileio.c:
* main.c:
* ppiwin.c:
* ser_posix.c:
* stk500.c:
Minor code cleanup to remove warnings.
2003-08-01 Theodore A. Roth <troth@openavr.org>

View File

@ -5,6 +5,8 @@
## @configure_input@
##
%define debug_package %{nil}
Summary: AVRDUDE is software for programming Atmel AVR Microcontrollers.
Name: avrdude
Version: @VERSION@
@ -43,6 +45,9 @@ make prefix=$RPM_BUILD_ROOT%{_prefix} \
infodir=$RPM_BUILD_ROOT%{_infodir} \
install
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version}
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
%clean
rm -rf $RPM_BUILD_ROOT
@ -68,11 +73,17 @@ fi
%attr(0644,root,root) %config /etc/avrdude.conf
%files docs
%doc doc/avrdude-html
%doc doc/avrdude-html/*.html
%doc doc/TODO
%doc doc/avrdude.ps
%doc doc/avrdude.pdf
%changelog
* Wed Aug 27 2003 Theodore A. Roth <troth@openavr.org>
[Thanks to Artur Lipowski <LAL@pro.onet.pl>]
- Do not build debug package.
- Remove files not packaged to quell RH9 rpmbuild complaints.
* Wed Mar 05 2003 Theodore A. Roth <troth@openavr.org>
- Add docs sub-package.
- Add %post and %preun scriptlets for handling info files.