Changeset ec6968b in rtems


Ignore:
Timestamp:
06/14/00 17:15:18 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6f93bb4
Parents:
c63a5cf
Message:

Patch rtems-rc-20000614-2-cvs.diff from Ralf Corsepius
<corsepiu@…> to evaluate ACLOCAL_AMFLAGS in
Makefile.ams before running aclocal.

Remark: This patch is in preparation to switching to Cygnus/GNU
canonicalization. I plan to introduce to an alternate aclocal macros
directory which shall contain Cygnus/GNU conforming macros only,
soon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bootstrap

    rc63a5cf rec6968b  
    6464
    6565  case $top_srcdir in
    66   /* ) aclocal_dir=$top_srcdir/aclocal
     66  /* ) aclocal_dir=$top_srcdir
    6767    ;;
    68   *) aclocal_dir=`pwd`/$top_srcdir/aclocal
     68  *) aclocal_dir=`pwd`/$top_srcdir
    6969    ;;
    7070  esac
     
    7575  ( test "$quiet" = "true" || echo "$dir";
    7676    cd $dir;
    77     aclocal -I $aclocal_dir;
     77    pat="s,\$(RTEMS_TOPdir),${aclocal_dir},g"
     78    aclocal_args=`grep '^[ ]*ACLOCAL_AMFLAGS' Makefile.am | \
     79      sed -e 's%.*ACLOCAL_AMFLAGS.*\=[ ]*%%g' -e $pat ` ;
     80    test "$verbose" = "-v" && echo "aclocal $aclocal_args"
     81    aclocal $aclocal_args;
    7882    autoconf;
    7983    test -n "`grep CONFIG_HEADER configure.in`" && autoheader ;
Note: See TracChangeset for help on using the changeset viewer.