summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-08-03 11:56:38 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-08-03 11:56:38 +0200
commite13593dceb74bfd7e94e22d8ac974e3e0c2bac0f (patch)
tree4c47d7d93ee5815cfb29c8df014cab8779a2e518 /autogen.sh
parentcore: use argument "-i" for sed command (don't create a temporary file) (diff)
downloadweechat-e13593dceb74bfd7e94e22d8ac974e3e0c2bac0f.tar.xz
weechat-e13593dceb74bfd7e94e22d8ac974e3e0c2bac0f.zip
core: fix build with autotools and gettext >= 0.19
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh26
1 files changed, 5 insertions, 21 deletions
diff --git a/autogen.sh b/autogen.sh
index daac11bbc..7136b33b1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -51,36 +51,20 @@ run ()
fi
}
-###
-### cleanning part
-###
-# remove autotools stuff
-run "rm -rf config"
+# remove autotools stuff
run "rm -f config.h.in"
run "rm -f aclocal.m4 configure config.log config.status"
run "rm -rf autom4te*.cache"
+
# remove libtool stuff
run "rm -f libtool"
+
# remove gettext stuff
run "rm -f ABOUT-NLS"
run "rm -rf intl"
-###
-### configuration part
-###
-# create the config directory
-run "mkdir -p config/m4"
-run "mkdir intl"
-
-# execute autotools cmds
-run "autopoint -f"
-LIBTOOLIZE=libtoolize
-test `uname` = "Darwin" && LIBTOOLIZE=glibtoolize
-run "$LIBTOOLIZE --automake --force --copy"
-run "aclocal --force -I config/m4"
-run "autoheader"
-run "autoconf"
-run "automake --add-missing --copy --gnu"
+# execute autoreconf cmds
+run "autoreconf -fvi"
# ending
rm -f $AUTOGEN_LOG