From f787cf0eb470b68139ecde9c64210dfa59b8c4dd Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 18 Dec 2009 23:14:06 +0100 Subject: [PATCH] Makefile.in: Fix typo in definition of all_objs. Due to this typo, the all_objs variable did not contain the audiod objects which could cause gcc to miscompile para_audiod. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index f1cf1e40..72f59eae 100644 --- a/Makefile.in +++ b/Makefile.in @@ -211,7 +211,7 @@ write_objs := $(addprefix $(object_dir)/, @write_objs@) afh_objs := $(addprefix $(object_dir)/, @afh_objs@) all_objs := $(recv_objs) $(filter_objs) $(client_objs) $(gui_objs) \ - $(audiod_objs ) $(audioc_objs) $(fade_objs) $(server_objs) \ + $(audiod_objs) $(audioc_objs) $(fade_objs) $(server_objs) \ $(write_objs) $(afh_objs) -include $(all_objs:.o=.d) -- 2.39.2