all repos — fluxbox @ ea2464a9eac3f5b4adf640485fa9a5d73bcf1d41

custom fork of the fluxbox windowmanager

automake: fix initialization

Reference: http://www.gnu.org/software/automake/manual/automake.html#Public-Macros
Sami Kerola kerolasa@iki.fi
commit

ea2464a9eac3f5b4adf640485fa9a5d73bcf1d41

parent

b825874d2e76b97e832df84b0ae3c485637d01e5

2 files changed, 7 insertions(+), 3 deletions(-)

jump to
M autogen.shautogen.sh

@@ -16,7 +16,7 @@ libtoolize --copy --force --automake

rm -f config.cache dothis aclocal -I . ${ACLOCAL_FLAGS} dothis autoheader -dothis automake -a -c --warnings=none +dothis automake -a -c dothis autoconf echo 'Success, now continue with ./configure'
M configure.acconfigure.ac

@@ -1,7 +1,11 @@

dnl Initialize autoconf and automake -AC_INIT(src/main.cc) AC_PREREQ(2.52) -AM_INIT_AUTOMAKE(fluxbox,1.3.3,[no-define]) +AC_INIT([fluxbox], + [1.3.3], + [fluxbox-devel@lists.sourceforge.net],, + [http://fluxbox.org/]) +AC_CONFIG_SRCDIR([src/fluxbox.cc]) +AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 no-dist-gzip dist-xz]) dnl Determine default prefix AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"])