source: rtems/scripts/gccnewlib/base-chill.add @ 5bca94b

4.104.114.84.95
Last change on this file since 5bca94b 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
Line 
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
16%dir %{_prefix}/info
17%doc %{_prefix}/info/chill.info*.gz
18
19%post -n rtems-base-chill
20  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
21  then
22    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
23    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
24    test -n "$f" && for i in $f; do
25      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
26    done
27  fi
28
29%postun -n rtems-base-chill
30  if test -d $RPM_INSTALL_PREFIX%{_prefix}/info;
31  then
32    rm -f $RPM_INSTALL_PREFIX%{_prefix}/info/dir
33    f=`find $RPM_INSTALL_PREFIX%{_prefix}/info -name '*.info.gz'`
34    test -n "$f" && for i in $f; do
35      install-info $i $RPM_INSTALL_PREFIX%{_prefix}/info/dir
36    done
37  fi
38
Note: See TracBrowser for help on using the repository browser.