source: rtems/scripts/gccnewlib/base-chill.add @ 4b3af7a4

4.104.114.84.95
Last change on this file since 4b3af7a4 was 4b3af7a4, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/02 at 21:08:15

2002-01-29 Ralf Corsepius <corsepiu@…>

  • mkbinutilspec.in, mkgccnewlibspec.in, gccnewlib/base-chill.add, gccnewlib/base-g77.add, gccnewlib/base-gcc.add, gccnewlib/base-gcj.add, gccnewlib/gccnewlib.add, gccnewlib/target-chill.add, gccnewlib/target-g77.add, gccnewlib/target-gcc.add, gccnewlib/target-gcj.add, gccnewlib/target-objc.add: Added more support for Canadian Cross building.
  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[df49c60]1# ==============================================================
2# rtems-base-chill
3# ==============================================================
4%package -n rtems-base-chill
5Provides:       rtems-base-chill
6Summary:        base package for rtems gcc/chill compiler.
7Group: rtems
8Requires: rtems-base-gcc
9
10%description -n rtems-base-chill
11RTEMS is an open source operating system for embedded systems.
12
13This is the files for gcc/chill that are shared by all targets.
14
15%files -n rtems-base-chill
[4b3af7a4]16%dir %{_prefix}/info
17%doc %{_prefix}/info/chill.info*.gz
[df49c60]18
19%post -n rtems-base-chill
[4b3af7a4]20  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
[df49c60]21  then
[4b3af7a4]22    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
23    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
[df49c60]24    test -n "$f" && for i in $f; do
[4b3af7a4]25      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
[df49c60]26    done
27  fi
28
29%postun -n rtems-base-chill
[4b3af7a4]30  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
[df49c60]31  then
[4b3af7a4]32    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
33    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
[df49c60]34    test -n "$f" && for i in $f; do
[4b3af7a4]35      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
[df49c60]36    done
37  fi
38
Note: See TracBrowser for help on using the repository browser.