summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2007-07-09 12:59:16 -0400
committerDavid Zeuthen <davidz@redhat.com>2007-07-09 12:59:16 -0400
commitfeb067c138071aca82bf78f8ecb8fd2052603220 (patch)
tree674feb19705b42534dcb18e7f00bde83848e1639 /autogen.sh
parenta88fc4ff5e21668d4c41fa5bc7d2188791250b7a (diff)
autogen.sh: srcdir != objdir safety
Run autoreconf from the srcdir, not just configure.
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 a32e6788..b04d6e03 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,7 +17,7 @@ if test -z "$*"; then
echo
fi
-autoreconf --force --install || exit 1
+(cd $srcdir && autoreconf --force --install) || exit 1
conf_flags="--enable-maintainer-mode --enable-gtk-doc"