diff options
author | rjones <rjones> | 2009-03-03 09:08:12 +0000 |
---|---|---|
committer | rjones <rjones> | 2009-03-03 09:08:12 +0000 |
commit | 407caabfd04a8bb6338a7fcf4f46d85d75e709df (patch) | |
tree | 90c6739b637666ab0b8d32e72ffb3122c33d1678 /autogen.sh | |
parent | 28d760b1542da7ff83b18c4ca60c2d03f327c2f4 (diff) | |
download | libguestfs-407caabfd04a8bb6338a7fcf4f46d85d75e709df.tar.gz libguestfs-407caabfd04a8bb6338a7fcf4f46d85d75e709df.tar.xz libguestfs-407caabfd04a8bb6338a7fcf4f46d85d75e709df.zip |
Final fixes to build environment, and added autogen.sh.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 00000000..959fdcea --- /dev/null +++ b/autogen.sh @@ -0,0 +1,26 @@ +#!/bin/sh - +# libguestfs +# Copyright (C) 2009 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# +# Rebuild the autotools environment. + +set -e +set -v +export AUTOMAKE='automake --foreign' +autoreconf +cd daemon +autoreconf
\ No newline at end of file |