Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
#! /bin/bash
#!/bin/bash

# $Id: autogen.sh 65 2004-12-24 19:51:17Z ctm $

set -o errexit -o nounset -o noclobber
#set -o errexit -o nounset -o noclobber

libtoolize
test -z "$LIBTOOL" && for LIBTOOL in glibtool libtool; do
($LIBTOOL --version) < /dev/null > /dev/null 2>&1 && break
done
test -z "$LIBTOOLIZE" && for LIBTOOLIZE in glibtoolize libtoolize; do
($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
done

$LIBTOOLIZE
aclocal
autoheader
automake --add-missing
Expand Down