]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Makefile.in: Fix typo in definition of all_objs.
authorAndre Noll <maan@systemlinux.org>
Fri, 18 Dec 2009 22:14:06 +0000 (23:14 +0100)
committerAndre Noll <maan@systemlinux.org>
Fri, 18 Dec 2009 22:14:06 +0000 (23:14 +0100)
Due to this typo, the all_objs variable did not contain the audiod objects which
could cause gcc to miscompile para_audiod.

Makefile.in

index f1cf1e40640a8347ae78edb0d7c9759b87716d17..72f59eaedc98df0d973a4ae81cd92e5af2fdc05b 100644 (file)
@@ -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)