From: Andre Noll Date: Fri, 18 Dec 2009 22:14:06 +0000 (+0100) Subject: Makefile.in: Fix typo in definition of all_objs. X-Git-Tag: v0.4.1~5^2~20 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=f787cf0eb470b68139ecde9c64210dfa59b8c4dd 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. --- 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)