For some reason when the build system was converted to automake by this patch
"Convert the build system to autotools"
the name of the output binary for crec was changed from 'crec' to 'crecord'.
This patch corrects it back to 'crec'
Signed-off-by: Richard Fitzgerald rf@opensource.wolfsonmicro.com --- src/utils/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/utils/Makefile.am b/src/utils/Makefile.am index 5f685e3..1967d92 100644 --- a/src/utils/Makefile.am +++ b/src/utils/Makefile.am @@ -1,11 +1,11 @@ -bin_PROGRAMS = cplay crecord +bin_PROGRAMS = cplay crec
cplay_SOURCES = cplay.c -crecord_SOURCES = crec.c +crec_SOURCES = crec.c
cplay_CFLAGS = -I$(top_srcdir)/include -crecord_CFLAGS = -I$(top_srcdir)/include +crec_CFLAGS = -I$(top_srcdir)/include
cplay_LDADD = $(top_builddir)/src/lib/libtinycompress.la -crecord_LDADD = $(top_builddir)/src/lib/libtinycompress.la +crec_LDADD = $(top_builddir)/src/lib/libtinycompress.la