Changeset 58271f6 in rtems
- Timestamp:
- 05/21/00 15:23:02 (23 years ago)
- Children:
- 1b69693
- Parents:
- f9c0574
- Location:
- scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/buildall.in
rf9c0574 r58271f6 7 7 CFG=./setup.cache 8 8 dst=@RPM_SPECSdir@ 9 target=@target@ 10 rpm_cpu=@RPM_CPU@ 9 11 10 12 usage() … … 136 138 # NOTE: This requires having binutils installed and we immediately 137 139 # remove it once finished. 138 base_binutils_rpm=${dst}/../RPMS/ i386/rtems-base-binutils-${binutils}-${binutils_rpm_release}.i386.rpm139 binutils_rpm=${dst}/../RPMS/ i386/${target}-binutils-${binutils}-${binutils_rpm_release}.i386.rpm140 base_binutils_rpm=${dst}/../RPMS/${rpm_cpu}/rtems-base-binutils-${binutils}-${binutils_rpm_release}.${rpm_cpu}.rpm 141 binutils_rpm=${dst}/../RPMS/${rpm_cpu}/${target}-binutils-${binutils}-${binutils_rpm_release}.${rpm_cpu}.rpm 140 142 if [ ! -f ${binutils_rpm} ] ; then 141 143 echo There is no RPM for binutils for ${target}. -
scripts/configure.in
rf9c0574 r58271f6 32 32 AC_SUBST(RPM_SPECSdir) 33 33 34 AC_CANONICAL_HOST 35 36 AC_MSG_CHECKING(for RPM CPU type) 37 changequote(,)dnl 38 case "${host}" in 39 i[34567]86-*linux*) RPM_CPU=i386 ;; 40 i[34567]86-pc-cygwin*) RPM_CPU=i386 ;; 41 sparc-sun-solaris*) RPM_CPU=sparc ;; 42 *) 43 AC_MSG_ERROR(RPM CPU for ${target} is unknown) 44 ;; 45 esac 46 changequote([,])dnl 47 AC_MSG_RESULT($RPM_CPU) 48 34 49 GCCNEWLIBVERS="gcc-${gcc_version}-newlib-${newlib_version}" 35 50 AC_SUBST(GCCNEWLIBVERS) … … 41 56 AC_SUBST(RTEMS_VERSION) 42 57 AC_SUBST(BSPVERS) 58 AC_SUBST(RPM_CPU) 43 59 44 60 AC_OUTPUT(
Note: See TracChangeset
for help on using the changeset viewer.