summaryrefslogtreecommitdiffstats
path: root/scripts/mkspec
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-18 19:10:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-18 19:10:03 +0000
commit8c5e54b1afbf4f980543e3eccff3495d2fb84419 (patch)
tree64253854ac3a517c4cd2dc585b1632cf8d698239 /scripts/mkspec
parentRalf Corsepius (corsepiu@faw.uni-ulm.de) submitted these scripts to (diff)
downloadrtems-8c5e54b1afbf4f980543e3eccff3495d2fb84419.tar.bz2
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.
Diffstat (limited to 'scripts/mkspec')
-rwxr-xr-xscripts/mkspec13
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/mkspec b/scripts/mkspec
index 8f725bdf5e..12f024e7de 100755
--- a/scripts/mkspec
+++ b/scripts/mkspec
@@ -5,10 +5,15 @@ RTEMS_DIR=`dirname $0`
RTEMS_VERSION=`grep Version ${RTEMS_DIR}/../VERSION | \
sed -e 's%RTEMS[ ]*Version[ ]*\(.*\)[ ]*%\1%g'`
-bsp=$1
-target_alias=$2
+target_alias=$1
+bsp=$2
release=0
-${RTEMS_DIR}/scripts/mkbspspec $bsp $target_alias
-${RTEMS_DIR}/scripts/mktoolspec $target_alias
+#${RTEMS_DIR}/scripts/mkbspspec $bsp $target_alias
+#${RTEMS_DIR}/scripts/mkbinutilspec $target_alias
+#${RTEMS_DIR}/scripts/mkgccnewlibspec $target_alias
+#${RTEMS_DIR}/scripts/mkgdbspec $target_alias
+./mkbinutilspec $target_alias
+./mkgccnewlibspec $target_alias
+./mkgdbspec $target_alias