From c2cc7f881a1257f2253be419e9a9b239ede5e0de Mon Sep 17 00:00:00 2001
From: Andre Noll <maan@systemlinux.org>
Date: Sun, 1 Dec 2013 01:41:16 +0100
Subject: [PATCH] configure.ac: Fix definition of recv_ldflags.

This cut+paste typo in the libflac section causes the build system
to link para_recv against the wrong set of libraries.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 55b38e54..1d1d6e3c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -970,7 +970,7 @@ if test "$have_flac" = "yes"; then
 	play_ldflags="$play_ldflags $flac_libs -lFLAC"
 	server_ldflags="$server_ldflags $flac_libs -lFLAC"
 	afh_ldflags="$afh_ldflags $flac_libs -lFLAC"
-	recv_ldflags="$afh_ldflags $flac_libs -lFLAC"
+	recv_ldflags="$recv_ldflags $flac_libs -lFLAC"
 	filters="$filters flacdec"
 	audio_format_handlers="$audio_format_handlers flac"
 	audiod_audio_formats="$audiod_audio_formats flac"
-- 
2.39.5