source: rtems/scripts/configure.in @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was 847dbbe, checked in by Joel Sherrill <joel.sherrill@…>, on 02/01/00 at 13:41:54

Patches rtems-rc-20000118-5.diff from Ralf Corsepius <corsepiu@…>
that contains:

  • The fix for the gen68360/network/Makefile.am
  • automatically set permissions to 755 to scripts/buildall and scripts-ada/buildall (I remembered a trick to achieve this :).
  • automake support for libbsp/* and libcpu/* (Attn: This part will finally break old-style configuration for all non-public cpus)

NOTES:

  • This patch has only been tested for a random selection of BSPs (I haven't rebuilt all toolchains yet).
  • This patch is against rtem-cvs as of this morning (MET).

To apply:

patch -p1 <rtems-rc-20000118-5.diff
cvs rm -f ./c/src/lib/libbsp/Makefile.in
cvs rm -f ./c/src/lib/libbsp/shmdr/Makefile.in
cvs rm -f ./c/src/lib/libcpu/Makefile.in
cvs add ./c/src/lib/libbsp/Makefile.am
cvs add ./c/src/lib/libbsp/shmdr/Makefile.am
cvs add ./c/src/lib/libcpu/Makefile.am
./bootstrap

  • Property mode set to 100644
File size: 1.1 KB
Line 
1## $Id$
2
3AC_INIT(binutils)
4AM_INIT_AUTOMAKE(scripts,20000125-0,no)
5
6AC_EXEEXT
7
8test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
9. ./setup.cache
10
11# Some linux distributions use /usr/src/packages
12# redhat uses /usr/src/redhat
13# others might use /usr/src
14AC_MSG_CHECKING(for rpm SPECS directory)
15if test -d /usr/src/packages/SPECS;
16then
17  RPM_SPECSdir=/usr/src/packages/SPECS;
18elif test -d /usr/src/redhat/SPECS;
19then
20  RPM_SPECSdir=/usr/src/redhat/SPECS;
21elif test -d /usr/src/SPECS/;
22then
23  RPM_SPECSdir=/usr/src/SPECS;
24fi
25if test x"$RPM_SPECSdir" = x"" ; then
26AC_MSG_ERROR(not found)
27fi
28AC_MSG_RESULT($RPM_SPECSdir)
29AC_SUBST(RPM_SPECSdir)
30
31GCCNEWLIBVERS="gcc-${gcc_version}-newlib-${newlib_version}"
32AC_SUBST(GCCNEWLIBVERS)
33BINUTILSVERS="binutils-${binutils_version}"
34AC_SUBST(BINUTILSVERS)
35GDBVERS="gdb-${gdb_version}"
36AC_SUBST(GDBVERS)
37BSPVERS="${rtems_version}"
38AC_SUBST(RTEMS_VERSION)
39AC_SUBST(BSPVERS)
40
41AC_OUTPUT(
42Makefile
43buildall
44mkbinutilspec
45mkgccnewlibspec
46mkgdbspec
47mkbspspec
48binutils/Makefile
49gccnewlib/Makefile
50gdb/Makefile
51rtems/Makefile,,
52chmod 755 buildall
53)
Note: See TracBrowser for help on using the repository browser.