projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c553c9e
)
Makefile.in: Fix typo in definition of all_objs.
author
Andre Noll
<maan@systemlinux.org>
Fri, 18 Dec 2009 22:14:06 +0000
(23:14 +0100)
committer
Andre 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
patch
|
blob
|
history
diff --git
a/Makefile.in
b/Makefile.in
index
f1cf1e4
..
72f59ea
100644
(file)
--- 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)