source: rtems/scripts/mkspec @ c5b8d6d

4.104.114.84.95
Last change on this file since c5b8d6d was 8c5e54b, checked in by Joel Sherrill <joel.sherrill@…>, on 10/18/99 at 19:10:03

Working on being able to cut RPMs. It now appears that the process
is working mostly for sparc at least.

There is one major problem -- the current process generates a unique
source file per RPM when in fact all of the source files are nearly
the same -- it is only the spec part of the rpm which differs.
The new file mkbinutils_subpackage_version is an attempt to
address this. It does part of the job right -- one source file
produces multiple binary RPMs. BUT the end user can not produce
the resulting RPMS themselves from SRPMS unless they also
build all targets.

  • Property mode set to 100755
File size: 467 bytes
Line 
1#!/bin/sh
2#
3
4RTEMS_DIR=`dirname $0`
5RTEMS_VERSION=`grep Version ${RTEMS_DIR}/../VERSION | \
6sed -e 's%RTEMS[        ]*Version[      ]*\(.*\)[       ]*%\1%g'`
7
8target_alias=$1
9bsp=$2
10release=0
11
12#${RTEMS_DIR}/scripts/mkbspspec $bsp $target_alias
13#${RTEMS_DIR}/scripts/mkbinutilspec $target_alias
14#${RTEMS_DIR}/scripts/mkgccnewlibspec $target_alias
15#${RTEMS_DIR}/scripts/mkgdbspec $target_alias
16./mkbinutilspec $target_alias
17./mkgccnewlibspec $target_alias
18./mkgdbspec $target_alias
19
Note: See TracBrowser for help on using the repository browser.