Changeset 896247d in rtems
- Timestamp:
- 08/27/06 12:46:13 (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 45bcd28
- Parents:
- 2ba11f8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/mingw/build-exes.sh
r2ba11f8 r896247d 8 8 # script. 9 9 # 10 11 source=$(dirname $0) 10 12 11 13 terminate() … … 23 25 24 26 version=4.7 25 tool_build= 126 27 target_list= "i386 m68k powerpc sparc arm mips"27 tool_build=3 28 29 target_list=$(cat $source/targets) 28 30 29 31 mingw32_cpu_list="i686" … … 36 38 run_prefix= 37 39 relocation= 38 39 source=$(dirname $0)40 40 41 41 if [ "$source" = "." ]; then … … 118 118 for p in $mingw32_cpu_list 119 119 do 120 common_rpms= $(get_rpm_list $p $common_label)121 check "getting the common RPM list"120 common_rpms="$(get_rpm_list noarch auto) $(get_rpm_list $p $common_label)" 121 check "getting the autotools and common RPM list" 122 122 123 123 rpm_options="--ignoreos --force --nodeps --noorder " … … 140 140 141 141 files=$(find $relocation -type f | sed -e "s/^$(echo ${relocation} | sed 's/\//\\\//g')//" -e "s/^\///" | sort) 142 143 echo "$files" > $relocation/files.txt 144 142 145 check "find the file list" 143 146 … … 209 212 echo "!define RTEMS_BINARY \"$rtems_binary\"" >> $of 210 213 echo "!define RTEMS_LICENSE_FILE \"$source/rtems-license.rtf\"" >> $of 214 echo "!define TOOL_PREFIX \"$prefix\"" >> $of 211 215 echo "!include \"$relocation/rtems-files.nsi\"" >> $of 212 216 echo "!include \"$source/rtems-tools.nsi\"" >> $of
Note: See TracChangeset
for help on using the changeset viewer.