diff options
| author | Yang Tse <yangsita@gmail.com> | 2008-07-27 18:10:54 +0000 | 
|---|---|---|
| committer | Yang Tse <yangsita@gmail.com> | 2008-07-27 18:10:54 +0000 | 
| commit | c4edc25d01c436a0e1698d1aa169e4bbea673c53 (patch) | |
| tree | 2d8aa5f1c20bdfd658ee24c6cf8c7686352b7a72 | |
| parent | 36361d14cf0637f45ca6e6f1e34f95d74d3d0322 (diff) | |
When calling aclocal, user defined ACLOCAL_FLAGS will now precede ours.
| -rwxr-xr-x | ares/buildconf | 7 | ||||
| -rwxr-xr-x | buildconf | 9 | 
2 files changed, 13 insertions, 3 deletions
| diff --git a/ares/buildconf b/ares/buildconf index 434a308fd..7e5e077b2 100755 --- a/ares/buildconf +++ b/ares/buildconf @@ -1,7 +1,12 @@  #!/bin/sh +if test -z "$ACLOCAL_FLAGS"; then +  ACLOCAL_FLAGS="-I m4" +else +  ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" +fi +  ${LIBTOOLIZE:-libtoolize} --copy --automake --force -ACLOCAL_FLAGS="-I m4 $ACLOCAL_FLAGS"  ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS  ${AUTOHEADER:-autoheader}  ${AUTOCONF:-autoconf} @@ -206,15 +206,20 @@ PERL=`findtool ${PERL:-perl}`  # run the correct scripts now +if test -z "$ACLOCAL_FLAGS"; then +  ACLOCAL_FLAGS="-I m4" +else +  ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" +fi +  tmp_host_type=`uname -a | sed '/SunOS/s/.*\(SunOS\).*/\1/'`  if test "x$tmp_host_type" = "xSunOS"; then -ACLOCAL_FLAGS="--verbose $ACLOCAL_FLAGS" +  ACLOCAL_FLAGS="$ACLOCAL_FLAGS --verbose"  fi  echo "buildconf: running libtoolize"  $libtoolize --copy --automake --force || die "The libtoolize command failed"  echo "buildconf: running aclocal" -ACLOCAL_FLAGS="-I m4 $ACLOCAL_FLAGS"  ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The aclocal command line failed"  if test -n "$PERL"; then    echo "buildconf: running aclocal hack to convert all mv to mv -f" | 
