for the benefit of git users, checkout build/ if it is missing but after

2007-12-05  Ryan Lortie  <desrt@desrt.ca>

        * autogen.sh: for the benefit of git users, checkout build/ if it is
        missing
        * .gitignore: but after that, ignore it.


svn path=/trunk/; revision=6046
This commit is contained in:
Ryan Lortie 2007-12-05 06:34:18 +00:00 committed by Ryan Lortie
parent 4c78fb8faa
commit 330c7a6851
3 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

View File

@ -1,3 +1,9 @@
2007-12-05 Ryan Lortie <desrt@desrt.ca>
* autogen.sh: for the benefit of git users, checkout build/ if it is
missing
* .gitignore: but after that, ignore it.
2007-12-05 Ryan Lortie <desrt@desrt.ca>
* glib/ghash.c: ungtk-docify some comments for internal functions

View File

@ -83,6 +83,23 @@ rm -rf autom4te.cache
# regenerated from their corresponding *.in files by ./configure anyway.
touch README INSTALL
if [ ! -d build ]; then
if [ -x "`which svn`" ]; then
echo
echo "=============================================================="
echo " your checkout doesn't contain build/."
echo " fetching it from http://svn.gnome.org/svn/build/trunk/"
echo "=============================================================="
echo
svn checkout http://svn.gnome.org/svn/build/trunk/ build
else
echo
echo 'warning: build/ directory is missing and no "svn" to fetch it!'
echo
fi
fi
$ACLOCAL $ACLOCAL_FLAGS || exit $?
libtoolize --force || exit $?