summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Taylor <rob.taylor@codethink.co.uk>2007-09-03 11:45:22 +0100
committerRob Taylor <rob.taylor@codethink.co.uk>2007-09-03 14:13:05 +0100
commit2c39d1f89fc8d7cbeb7b676525349d3bdf53dbda (patch)
tree4dd6020a1c984d37795099a9d423835d270bea33
parent851bc4ec7d1d29b9671293a73c3c3aa3a8ad7c93 (diff)
install automake, libtoolize and gtkdocize files with copy
Install automake, libtoolize and gtkdocize files with copy rather than symlink. This is for supporting debian package building from a branch off master.
-rwxr-xr-xautogen.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 1a0b417..f2a6f64 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,13 +19,13 @@ echo "Running $AUTOCONF..."
$AUTOCONF || exit 1
echo "Running $LIBTOOLIZE --automake..."
-$LIBTOOLIZE --automake || exit 1
+$LIBTOOLIZE --automake -c || exit 1
echo "Running gtkdocize..."
-gtkdocize || exit 1
+gtkdocize --copy || exit 1
echo "Running $AUTOMAKE..."
-$AUTOMAKE -a || exit 1
+$AUTOMAKE -a -c || exit 1
$AUTOMAKE -a ohmd/Makefile || exit 1