equal
  deleted
  inserted
  replaced
  
    
    
    51 done  | 
    51 done  | 
    52   | 
    52   | 
    53 automake=automake  | 
    53 automake=automake  | 
    54 aclocal=aclocal  | 
    54 aclocal=aclocal  | 
    55 autoconf=autoconf  | 
    55 autoconf=autoconf  | 
         | 
    56 autoheader=autoheader  | 
    56   | 
    57   | 
    57 if test -n "$amver"  | 
    58 if test -n "$amver"  | 
    58 then  | 
    59 then  | 
    59   automake=automake-$amver  | 
    60   automake=automake-$amver  | 
    60   aclocal=aclocal-$amver  | 
    61   aclocal=aclocal-$amver  | 
    61 fi  | 
    62 fi  | 
    62   | 
    63   | 
    63 if test -n "$acver"  | 
    64 if test -n "$acver"  | 
    64 then  | 
    65 then  | 
    65   autoconf=autoconf-$acver  | 
    66   autoconf=autoconf-$acver  | 
         | 
    67   autoheader=autoheader-$acver  | 
    66 fi  | 
    68 fi  | 
    67   | 
    69   | 
    68 $aclocal \  | 
    70 set -x  | 
         | 
    71 $aclocal -I config \  | 
    69 && libtoolize --force --copy \  | 
    72 && libtoolize --force --copy \  | 
         | 
    73 && $autoheader \  | 
    70 && $automake --add-missing --copy --gnu \  | 
    74 && $automake --add-missing --copy --gnu \  | 
    71 && $autoconf  | 
    75 && $autoconf  |