summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2013-01-24 12:22:29 -0500
committerRyan Lortie <desrt@desrt.ca>2013-02-11 14:24:45 -0500
commitbd257c69988a596cb0c9f061982acadbdb49dd7f (patch)
treefc9e747b6419bdb6ca3772abef3c1c565ed84768 /autogen.sh
parente0724e2f74b93970f5a4a2099c4444611b8f14e3 (diff)
downloaddconf-bd257c69988a596cb0c9f061982acadbdb49dd7f.tar.gz
build: enable running autoreconf on tarballs
A couple of things were preventing autoreconf from working properly on our tarball releases. Fix those up: - the m4/ directory (with intltool and gtk-doc m4) was not being disted - our ./autogen.sh invoked automake with --foreign, suppressing warnings about missing ChangeLog, etc. Move that flag into configure.ac so that they are still suppressed when using autoreconf. https://bugzilla.gnome.org/show_bug.cgi?id=663961
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 364c213..3595fa1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,7 +19,7 @@ intltoolize --force
gtkdocize --docdir docs --flavour no-tmpl
aclocal${automake_suffix} ${ACLOCAL_FLAGS}
autoheader
-automake${automake_suffix} --add-missing --foreign
+automake${automake_suffix} --add-missing
autoconf
CFLAGS=${CFLAGS=-ggdb}