aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-07-27 17:24:37 +0000
committerYang Tse <yangsita@gmail.com>2008-07-27 17:24:37 +0000
commit36361d14cf0637f45ca6e6f1e34f95d74d3d0322 (patch)
tree276b9fc91fa5936551d22ece3b8d42f94afa9b4e /buildconf
parentc8fe5f485c2a8f8bc11fec1cc904328127dde4f0 (diff)
For debugging purposes, run aclocal in verbose mode on SunOS systems.
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf7
1 files changed, 6 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index b0ef8ee5a..eecc28f66 100755
--- a/buildconf
+++ b/buildconf
@@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -206,6 +206,11 @@ PERL=`findtool ${PERL:-perl}`
# run the correct scripts now
+tmp_host_type=`uname -a | sed '/SunOS/s/.*\(SunOS\).*/\1/'`
+if test "x$tmp_host_type" = "xSunOS"; then
+ACLOCAL_FLAGS="--verbose $ACLOCAL_FLAGS"
+fi
+
echo "buildconf: running libtoolize"
$libtoolize --copy --automake --force || die "The libtoolize command failed"
echo "buildconf: running aclocal"