Adjust repo path dependencies.

Update .gitignore and configure.ac to deal with the recent directory
restructuring.
This commit is contained in:
Jason Evans 2011-03-31 22:38:51 -07:00
parent 7427525c28
commit 955851f384
2 changed files with 24 additions and 24 deletions

46
.gitignore vendored
View File

@ -1,23 +1,23 @@
/jemalloc/autom4te.cache/
/jemalloc/config.stamp
/jemalloc/config.log
/jemalloc/config.status
/jemalloc/configure
/jemalloc/doc/html.xsl
/jemalloc/doc/manpages.xsl
/jemalloc/doc/jemalloc.xml
/jemalloc/doc/jemalloc.html
/jemalloc/doc/jemalloc.3
/jemalloc/lib/
/jemalloc/Makefile
/jemalloc/include/jemalloc/internal/jemalloc_internal\.h
/jemalloc/include/jemalloc/jemalloc\.h
/jemalloc/include/jemalloc/jemalloc_defs\.h
/jemalloc/test/jemalloc_test\.h
/jemalloc/src/*.[od]
/jemalloc/test/*.[od]
/jemalloc/test/*.out
/jemalloc/test/[a-z]*
!/jemalloc/test/*.c
!/jemalloc/test/*.exp
/jemalloc/VERSION
/autom4te.cache/
/config.stamp
/config.log
/config.status
/configure
/doc/html.xsl
/doc/manpages.xsl
/doc/jemalloc.xml
/doc/jemalloc.html
/doc/jemalloc.3
/lib/
/Makefile
/include/jemalloc/internal/jemalloc_internal\.h
/include/jemalloc/jemalloc\.h
/include/jemalloc/jemalloc_defs\.h
/test/jemalloc_test\.h
/src/*.[od]
/test/*.[od]
/test/*.out
/test/[a-z]*
!test/*.c
!test/*.exp
/VERSION

View File

@ -688,7 +688,7 @@ dnl jemalloc configuration.
dnl
dnl Set VERSION if source directory has an embedded git repository.
if test -d "${srcroot}../.git" ; then
if test -d "${srcroot}.git" ; then
git describe --long --abbrev=40 > ${srcroot}VERSION
fi
jemalloc_version=`cat ${srcroot}VERSION`