summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2006-08-07 07:01:54 +0000
committerChris Johns <chrisj@rtems.org>2006-08-07 07:01:54 +0000
commit61e5a320642ca60b8ef51e4b6ff4c1eb2475b7b8 (patch)
treea0673db6f84c9406ff474e08118a990ba8bf468c /contrib
parentadded startup/linkcmds.brs5l (diff)
downloadrtems-61e5a320642ca60b8ef51e4b6ff4c1eb2475b7b8.tar.bz2
Removed the tool version as Ralf has removed it from the rpms.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/mingw/build-exes.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/mingw/build-exes.sh b/contrib/mingw/build-exes.sh
index 82502b9cd7..3c130a2601 100755
--- a/contrib/mingw/build-exes.sh
+++ b/contrib/mingw/build-exes.sh
@@ -22,7 +22,6 @@ check()
}
version=4.7
-tool_version=20060724
tool_build=1
target_list="i386 m68k powerpc sparc arm mips"
@@ -108,7 +107,9 @@ fi
get_rpm_list()
{
- echo $(ls $rpm_topdir/mingw32/RPMS/$1/*.rpm | grep -v "debuginfo" | grep $2 | grep $3)
+ if [ -d $rpm_topdir/mingw32/RPMS/$1 ]; then
+ echo $(ls $rpm_topdir/mingw32/RPMS/$1/*.rpm | grep -v "debuginfo" | grep $2)
+ fi
}
#
@@ -116,14 +117,14 @@ get_rpm_list()
#
for p in $mingw32_cpu_list
do
- common_rpms=$(get_rpm_list $p $common_label "$tool_version.$tool_build")
+ common_rpms=$(get_rpm_list $p $common_label)
check "getting the common RPM list"
rpm_options="--ignoreos --force --nodeps --noorder "
for t in $targets
do
- rpms=$(get_rpm_list $p $t "$tool_version.$tool_build")
+ rpms=$(get_rpm_list $p $t)
check "getting the RPM list"
if [ -n "$rpms" ]; then
echo "Clean the relocation directory"
@@ -200,7 +201,7 @@ do
of=$relocation/rtems.nsi
echo "!define RTEMS_TARGET \"$t\"" > $of
echo "!define RTEMS_VERSION \"$version\"" >> $of
- echo "!define RTEMS_BUILD_VERSION \"$tool_version-$tool_build\"" >> $of
+ echo "!define RTEMS_BUILD_VERSION \"$tool_build\"" >> $of
echo "!define RTEMS_PREFIX \"rtems-tools\"" >> $of
echo "!define RTEMS_SOURCE \"$source\"" >> $of
echo "!define RTEMS_RELOCATION \"$relocation\"" >> $of