source: rtems/scripts/configure.in @ 431c35d

4.104.114.84.95
Last change on this file since 431c35d was 431c35d, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/99 at 19:59:01

Miscellaneous improvements and cleanups committed so I can merge
Ralf's end of day version.

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