~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/autorun.sh

  • Committer: Brian Aker
  • Date: 2008-07-18 18:56:31 UTC
  • mfrom: (177.2.1 codestyle)
  • Revision ID: brian@tangent.org-20080718185631-2cw1sb0oelquxmh3
Merge from monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
## jump out if one of the programs returns 'false'
25
25
set -e
26
26
 
27
 
bzr log --short > ChangeLog || touch ChangeLog
 
27
if test -d ".bzr" ; then
 
28
  bzr log --short > ChangeLog || touch ChangeLog
 
29
fi
28
30
 
29
 
## We do not currently support glibtoolize
30
31
if test x$LIBTOOLIZE = x; then
31
 
#  if test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
32
 
#    LIBTOOLIZE=glibtoolize
33
32
  if test \! "x`which libtoolize-1.5 2> /dev/null | grep -v '^no'`" = x; then
34
33
    LIBTOOLIZE=libtoolize-1.5
35
34
  elif test \! "x`which libtoolize 2> /dev/null | grep -v '^no'`" = x; then
36
35
    LIBTOOLIZE=libtoolize
 
36
  elif test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
 
37
    LIBTOOLIZE=glibtoolize
37
38
  else 
38
39
    echo "libtoolize 1.5.x wasn't found, exiting"; exit 0
39
40
  fi