public
Description: GL based toolkit for creating visually impressive graphical user interfaces
Homepage: http://www.clutter-project.org
Clone URL: git://github.com/ebassi/clutter.git
2008-06-11  Emmanuele Bassi  <ebassi@openedhand.com>

  * autogen.sh: Force overwriting when glib-gettextize is
  invoked by autogen.sh.

git-svn-id: https://svn.o-hand.com/repos/clutter/trunk/clutter@2876 
ecf2853b-e7f2-0310-bfc1-8ca4a3543e6b
ebassi (author)
Wed Jun 11 02:36:35 -0700 2008
commit  1433160c0bbdc2c9ec1f96473afabc439a08c804
tree    d1b1d1fccb32e67ebc88fc7f8e18a36a9d54c102
parent  c7f2358559701fa0229000fe9378607fe3ea5d5a
...
25
26
27
28
 
29
30
31
 
 
 
 
 
 
 
32
33
...
25
26
27
 
28
29
30
 
31
32
33
34
35
36
37
38
39
0
@@ -25,9 +25,15 @@ if test -z $GLIB_GETTEXTIZE; then
0
         echo "*** No glib-gettextize ***"
0
         exit 1
0
 else
0
- glib-gettextize || exit $?
0
+ glib-gettextize -f || exit $?
0
 fi
0
 
0
-autoreconf -v --install || exit $?
0
+AUTORECONF=`which autoreconf`
0
+if test -z $AUTORECONF; then
0
+ echo "*** No autoreconf found ***"
0
+ exit 1
0
+else
0
+ autoreconf -v --install || exit $?
0
+fi
0
 
0
 ./configure "$@" && echo "Now type 'make' to compile $PROJECT."

Comments

    No one has commented yet.