Skip to content

Commit

Permalink
Small change to not run libtool if the package doesn't use it.
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Aug 27, 2005
1 parent 6f82bd2 commit ff7183b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions bootstrap
@@ -1,9 +1,9 @@
#! /bin/sh
##############################################################################
# $Id: bootstrap,v 1.3 2004-06-04 09:41:11 behdad Exp $
# $Id: bootstrap,v 1.4 2005-08-27 10:21:51 behdad Exp $
# $Author: behdad
# $Date: 2004-06-04 09:41:11 $
# $Revision: 1.3 $
# $Date: 2005-08-27 10:21:51 $
# $Revision: 1.4 $
# $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/bootstrap,v $
##############################################################################
# -*- Bootstrap -*-
Expand Down Expand Up @@ -117,7 +117,9 @@ else
# add files 'config.guess', 'config.sub', 'ltconfig', 'ltmain.sh'
test -f Makefile.am && MY_LIBTOOLIZEFLAGS=--automake
$DRYRUN libtoolize $HELP $VERSION $COPY $DEBUG $FORCE $MY_LIBTOOLIZEFLAGS $LIBTOOLIZEFLAGS || exit $?
if grep -q '^ *AC_PROG_LIBTOOL' configure.ac configure.in 2>/dev/null; then
$DRYRUN libtoolize $HELP $VERSION $COPY $DEBUG $FORCE $MY_LIBTOOLIZEFLAGS $LIBTOOLIZEFLAGS || exit $?
fi
# generate 'aclocal.m4'
if test -f configure.ac -o configure.in; then
Expand Down

0 comments on commit ff7183b

Please sign in to comment.