summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-03-13 16:33:02 +0100
committerGitHub <noreply@github.com>2017-03-13 16:33:02 +0100
commit0271049e60c76562344c759347165eb2a3f76e8f (patch)
tree0dc4e975bdcce53488aadd069a62e5529291d150
parent78ccb95e03e85f917d86dc5db8ae174c2b53c60f (diff)
parent15f4fc5f3b490e886c5599fe3db95495a968f246 (diff)
downloadATCD-0271049e60c76562344c759347165eb2a3f76e8f.tar.gz
Merge pull request #373 from jwillemsen/master
Use uniq for source files and grouped_source_files to not list any so…
-rw-r--r--ACE/bin/MakeProjectCreator/templates/gnu.mpd4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/bin/MakeProjectCreator/templates/gnu.mpd b/ACE/bin/MakeProjectCreator/templates/gnu.mpd
index bed9ed41422..aee6102cdb5 100644
--- a/ACE/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/ACE/bin/MakeProjectCreator/templates/gnu.mpd
@@ -65,7 +65,7 @@ DANCE_ROOT ?= $(TAO_ROOT)/DAnCE
<%if(grouped_source_files)%>
<%foreach(grouped_source_files)%>
<%grouped_source_file%> = \
-<%foreach(grouped_source_file->files)%>
+<%foreach(uniq(grouped_source_file->files))%>
<%grouped_source_file->file%><%fornotlast(" \\")%>
<%endfor%>
@@ -77,7 +77,7 @@ FILES += \
<%else%>
FILES = \
-<%foreach(source_files)%>
+<%foreach(uniq(source_files))%>
<%source_file%><%fornotlast(" \\")%>
<%endfor%>