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/ /autom4te.cache/
/jemalloc/config.stamp /config.stamp
/jemalloc/config.log /config.log
/jemalloc/config.status /config.status
/jemalloc/configure /configure
/jemalloc/doc/html.xsl /doc/html.xsl
/jemalloc/doc/manpages.xsl /doc/manpages.xsl
/jemalloc/doc/jemalloc.xml /doc/jemalloc.xml
/jemalloc/doc/jemalloc.html /doc/jemalloc.html
/jemalloc/doc/jemalloc.3 /doc/jemalloc.3
/jemalloc/lib/ /lib/
/jemalloc/Makefile /Makefile
/jemalloc/include/jemalloc/internal/jemalloc_internal\.h /include/jemalloc/internal/jemalloc_internal\.h
/jemalloc/include/jemalloc/jemalloc\.h /include/jemalloc/jemalloc\.h
/jemalloc/include/jemalloc/jemalloc_defs\.h /include/jemalloc/jemalloc_defs\.h
/jemalloc/test/jemalloc_test\.h /test/jemalloc_test\.h
/jemalloc/src/*.[od] /src/*.[od]
/jemalloc/test/*.[od] /test/*.[od]
/jemalloc/test/*.out /test/*.out
/jemalloc/test/[a-z]* /test/[a-z]*
!/jemalloc/test/*.c !test/*.c
!/jemalloc/test/*.exp !test/*.exp
/jemalloc/VERSION /VERSION

View File

@ -688,7 +688,7 @@ dnl jemalloc configuration.
dnl dnl
dnl Set VERSION if source directory has an embedded git repository. 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 git describe --long --abbrev=40 > ${srcroot}VERSION
fi fi
jemalloc_version=`cat ${srcroot}VERSION` jemalloc_version=`cat ${srcroot}VERSION`