changeset 33848:dc9418215e7d

Makefile: fix mistakenly broken ADD_ALL_EXESUFS function Since some platforms do not employ executable suffixes, ADD_ALL_SUFFIXES needs to return its parameters with and without suffixes added.
author diego
date Wed, 27 Jul 2011 15:58:30 +0000
parents 14b18f6659d7
children f8fe0c69419d
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Wed Jul 27 15:33:03 2011 +0000
+++ b/Makefile	Wed Jul 27 15:58:30 2011 +0000
@@ -752,7 +752,7 @@
 
 ADDSUFFIXES     = $(foreach suf,$(1),$(addsuffix $(suf),$(2)))
 ADD_ALL_DIRS    = $(call ADDSUFFIXES,$(1),$(ALL_DIRS))
-ADD_ALL_EXESUFS = $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1))
+ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1))
 
 
 ###### generic rules #######