mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 05:01:28 +00:00
This release fixes a serious path error when mixes are not created in the current mixer workspace as expected by default. The path for the output (STATE_DIR) needs to be used to make this work anywhere. Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
AC_PREREQ([2.68])
|
|
AC_INIT([mixer-tools],[2.01],[tudor.marcu@intel.com],[mixer-tools])
|
|
AM_INIT_AUTOMAKE([foreign silent-rules color-tests no-dist-gzip dist-xz])
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_PREFIX_DEFAULT(/usr/local)
|
|
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
AC_OUTPUT
|
|
|
|
AC_MSG_RESULT([
|
|
mixer-tools $VERSION
|
|
========
|
|
|
|
prefix: ${prefix}
|
|
exec_prefix: ${exec_prefix}
|
|
bindir: ${bindir}
|
|
])
|