diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-11-24 23:49:18 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-11-24 23:49:18 +0000 |
commit | bf9f3bac95bfccbc765f09f5b372197184cce8d7 (patch) | |
tree | 35677fd10e5e69d48dfdc7c43d850cbee1cfd781 /autogen.sh | |
parent | 6a1c3d418a94bd98ef47e6bedb15c85a31398d6f (diff) |
* : Add autogen.sh products.
* configure.ac : Use AC_CONFIG_AUX_DIR to put autoconf products
in ./auotconf.
* autogen.sh : Use --copy to avoid symlinks, remove error
redirection, run aclocal before libtoolize.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@180 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/autogen.sh b/autogen.sh index abd43903a..e5614cf32 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,10 +1,8 @@ #!/bin/sh -find . -type d -name .deps | xargs rm -rf -rm -rf config.guess config.sub ltmain.sh -libtoolize --automake -aclocal -I autoconf 2>/dev/null && +aclocal -I config && +libtoolize --automake --copy autoheader && -automake --add-missing --include-deps 2>/dev/null +automake --add-missing --include-deps --copy 2>/dev/null autoconf - +rm -rf autom4te.cache aclocal.m4 |