- Timestamp:
- 06/12/00 15:00:15 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- edeed26
- Parents:
- 0ab65474
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r0ab65474 rdf49c60 14 14 15 15 progname=`basename $0` 16 top_srcdir=`dirname $0` 17 16 18 verbose=""; 17 19 quiet="false" … … 32 34 } 33 35 34 if test ! -f VERSION; then36 if test ! -f $top_srcdir/VERSION; then 35 37 echo "${progname}:" 36 echo " Please change directory to RTEMS's toplevel directory"38 echo " Installation problem: Can't find file VERSION" 37 39 exit 1; 38 40 fi … … 58 60 done 59 61 60 pwd=`pwd`;61 62 62 case $mode in 63 63 generate) 64 confs=`find $pwd -name 'configure.in' -print` 65 aclocal_dir=$pwd/aclocal 64 65 case $top_srcdir in 66 /* ) aclocal_dir=$top_srcdir/aclocal 67 ;; 68 *) aclocal_dir=`pwd`/$top_srcdir/aclocal 69 ;; 70 esac 71 72 confs=`find . -name 'configure.in' -print` 66 73 for i in $confs; do 67 74 dir=`dirname $i`; … … 70 77 aclocal -I $aclocal_dir; 71 78 autoconf; 79 test -n "`grep CONFIG_HEADER configure.in`" && autoheader ; 72 80 test -f Makefile.am && automake $verbose ; 73 test -n "`grep CONFIG_HEADER configure.in`" && autoheader ;74 81 test -f Makefile.am && test -n "`grep 'stamp-h\.in' Makefile.in`" \ 75 82 && echo timestamp > stamp-h.in … … 77 84 done 78 85 ;; 86 79 87 clean) 80 88 test "$quiet" = "true" || echo "removing automake generated Makefile.in files"
Note: See TracChangeset
for help on using the changeset viewer.