Changeset 896247d in rtems


Ignore:
Timestamp:
08/27/06 12:46:13 (17 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
45bcd28
Parents:
2ba11f8
Message:

Handle the noarch rpms. Dump the file list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/mingw/build-exes.sh

    r2ba11f8 r896247d  
    88# script.
    99#
     10
     11source=$(dirname $0)
    1012
    1113terminate()
     
    2325
    2426version=4.7
    25 tool_build=1
    26 
    27 target_list="i386 m68k powerpc sparc arm mips"
     27tool_build=3
     28
     29target_list=$(cat $source/targets)
    2830
    2931mingw32_cpu_list="i686"
     
    3638run_prefix=
    3739relocation=
    38 
    39 source=$(dirname $0)
    4040
    4141if [ "$source" = "." ]; then
     
    118118for p in $mingw32_cpu_list
    119119do
    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"
    122122
    123123 rpm_options="--ignoreos --force --nodeps --noorder "
     
    140140
    141141   files=$(find $relocation -type f | sed -e "s/^$(echo ${relocation} | sed 's/\//\\\//g')//" -e "s/^\///" | sort)
     142
     143   echo "$files" > $relocation/files.txt
     144
    142145   check "find the file list"
    143146
     
    209212   echo "!define RTEMS_BINARY \"$rtems_binary\"" >> $of
    210213   echo "!define RTEMS_LICENSE_FILE \"$source/rtems-license.rtf\"" >> $of
     214   echo "!define TOOL_PREFIX \"$prefix\"" >> $of
    211215   echo "!include \"$relocation/rtems-files.nsi\"" >> $of
    212216   echo "!include \"$source/rtems-tools.nsi\"" >> $of
Note: See TracChangeset for help on using the changeset viewer.