Disable maintainer mode in legacy build

And update autogen.sh to copy build files
This commit is contained in:
Leland Lucius 2020-03-17 08:49:09 -05:00
parent 386563fc8c
commit 2cf6704e23
2 changed files with 7 additions and 3 deletions

View File

@ -147,13 +147,13 @@ fi
echo "Generating configuration files for $package, please wait ... "
echo " $ACLOCAL $ACLOCAL_FLAGS"
$ACLOCAL $ACLOCAL_FLAGS || exit 1
$ACLOCAL $ACLOCAL_FLAGS -Im4 --install || exit 1
echo " $LIBTOOLIZE --automake --force"
$LIBTOOLIZE --automake --force || exit 1
$LIBTOOLIZE --automake --force --copy --install || exit 1
echo " autoheader"
autoheader || exit 1
echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS --copy || exit 1
echo " autoconf"
autoconf || exit 1

View File

@ -33,6 +33,10 @@ AC_CONFIG_HEADERS([src/config.h])
AM_INIT_AUTOMAKE([1.14 foreign dist-bzip2 no-dist-gzip serial-tests subdir-objects])
AM_SILENT_RULES([yes])
dnl Audacity policy: don't enable automatic rebuild of configure et al if
dnl sources change
AM_MAINTAINER_MODE([disable])
dnl ====================================================================================
AC_PROG_CC