source: rtems/scripts/mkbinutilspec.in @ 5eac93c7

4.104.114.84.95
Last change on this file since 5eac93c7 was 5eac93c7, checked in by Joel Sherrill <joel.sherrill@…>, on 01/25/00 at 19:47:32

Now binutils, gcc, and gdb build into a "base" package that is shared
by all targets and one or more target specific RPMs. This significantly
reduces the conflicts between the RPMs whether installing one or multiple
targets.

  • Property mode set to 100644
File size: 1014 bytes
RevLine 
[10629f7]1#!/bin/sh
2#
3#  Usage: mkbinutilspec CPU
4#
5
[43e7d103]6RTEMS_DIR=`dirname $0`/@top_srcdir@
[10629f7]7
[43e7d103]8CFG=setup.cache
[10629f7]9dst=@RPM_SPECSdir@
[0c602f0]10exe_ext=@EXEEXT@
[10629f7]11
12usage()
13{
14  echo "$0 [options] <target_alias>"
15  echo "  options:"
[43e7d103]16  echo "    -cfg <setup.cache>"
[10629f7]17  echo "    -o <rpm-spec-dir>"
18  exit 1 ;
19}
20
21while test $# -ge 2; do
22case $1 in
23-cfg)
24  shift
25  CFG=$1
26  shift
27  ;;
28-o)
29  shift
30  dst=$1
31  shift
32  ;;
33-*)
34  echo "invalid option $1";
35  usage
36  ;;
37esac
38done
39
40if test ! $# -eq 1;
41then
42  echo "Invalid number of arguments"
43  usage
44fi
45
46# target to build for
47target_alias=$1
48
49. ./$CFG
50
51specfile=${dst}/$target_alias-binutils-${binutils_version}.spec
52
[431c35d]53sed -e "s%@Release@%${binutils_rpm_release}%g" \
[7063e223]54    -e "s%@rpm_build_root@%${rpm_build_root}%g" \
[10629f7]55    -e "s%@target_alias@%${target_alias}%g" \
56    -e "s%@binutils_version@%${binutils_version}%g" \
57    -e "s%@binutils_patch_version@%${binutils_patch_version}%g" \
[5eac93c7]58    -e "s%@exe_ext@%${exe_ext}%g" \
[10629f7]59< ${RTEMS_DIR}/binutils/binutils.spec.in \
60> ${specfile}
61
62echo Generated ${specfile}
Note: See TracBrowser for help on using the repository browser.