mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
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:
parent
4c78fb8faa
commit
330c7a6851
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
@ -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
|
||||
|
17
autogen.sh
17
autogen.sh
@ -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 $?
|
||||
|
Loading…
Reference in New Issue
Block a user