diff options
author | sgk@chromium.org <sgk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 00:31:54 +0000 |
---|---|---|
committer | sgk@chromium.org <sgk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 00:31:54 +0000 |
commit | 833cb13fde39de9bcd7f68d6a9523d1fbedc689a (patch) | |
tree | bb1747c67067b2d343bbb4e78b513e5616a422f0 /third_party/tcmalloc/vendor/autogen.sh | |
parent | 04113ce25aa3d2fe79aba8fa670db2f5ad9b8b89 (diff) | |
download | chromium_src-833cb13fde39de9bcd7f68d6a9523d1fbedc689a.zip chromium_src-833cb13fde39de9bcd7f68d6a9523d1fbedc689a.tar.gz chromium_src-833cb13fde39de9bcd7f68d6a9523d1fbedc689a.tar.bz2 |
Import vanilla upstream tcmalloc sources into a vendor branch
as a basis for local changes.
BUG=27911
TEST=none
Review URL: http://codereview.chromium.org/436037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33016 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/tcmalloc/vendor/autogen.sh')
-rw-r--r-- | third_party/tcmalloc/vendor/autogen.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/tcmalloc/vendor/autogen.sh b/third_party/tcmalloc/vendor/autogen.sh new file mode 100644 index 0000000..9659115 --- /dev/null +++ b/third_party/tcmalloc/vendor/autogen.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +# Before using, you should figure out all the .m4 macros that your +# configure.m4 script needs and make sure they exist in the m4/ +# directory. +# +# These are the files that this script might edit: +# aclocal.m4 configure Makefile.in src/config.h.in \ +# depcomp config.guess config.sub install-sh missing mkinstalldirs \ +# ltmain.sh +# +# Here's a command you can run to see what files aclocal will import: +# aclocal -I ../autoconf --output=- | sed -n 's/^m4_include..\([^]]*\).*/\1/p' + +set -ex +rm -rf autom4te.cache + +aclocal --force -I m4 +grep -q LIBTOOL configure.ac && libtoolize -c -f +autoconf -f -W all,no-obsolete +autoheader -f -W all +automake -a -c -f -W all,no-override + +rm -rf autom4te.cache +exit 0 |