summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2019-08-19 16:40:14 -0500
committerGitHub <noreply@github.com>2019-08-19 16:40:14 -0500
commit8c89d27a11283659a6e172f6ea4cadde2f35eca3 (patch)
treec7b35586a149ed4e23560b0b7605f870248af308
parente760efd9217e2753839160109c3d7cdd1c755bb8 (diff)
parentf5bce1948ce26dcc100594ec4c5404ce45ee17dd (diff)
downloadATCD-8c89d27a11283659a6e172f6ea4cadde2f35eca3.tar.gz
Merge pull request #936 from mitza-oci/master
gnuace updates
-rw-r--r--ACE/bin/MakeProjectCreator/templates/gnu.mpd11
1 files changed, 10 insertions, 1 deletions
diff --git a/ACE/bin/MakeProjectCreator/templates/gnu.mpd b/ACE/bin/MakeProjectCreator/templates/gnu.mpd
index 92ad6c02dc0..a5ac4417c31 100644
--- a/ACE/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/ACE/bin/MakeProjectCreator/templates/gnu.mpd
@@ -679,7 +679,7 @@ endif
<%endif%>
<%if(idl_files)%>
-ADDITIONAL_IDL_TARGETS +=<%foreach(idl_files)%> <%if(flag_overrides(idl_file, gendir))%><%if(!compares(flag_overrides(idl_file, gendir),.))%><%flag_overrides(idl_file, gendir)%>/<%endif%><%basenoextension(idl_file)%>$(IDL_CLIENT_HDR_EXT)<%else%><%noextension(idl_file)%>$(IDL_CLIENT_HDR_EXT)<%endif%><%endfor%>
+ADDITIONAL_IDL_TARGETS += $(GENERATED_DIRTY)
idl_stubs: $(ADDITIONAL_IDL_TARGETS)
<%if(source_files)%>
@@ -772,7 +772,16 @@ __postbuild__: $(VBIN) $(INSTALL)
<%if(sharedname || staticname)%>
__postbuild__: $(VLIBS) $(INSTALL)
<%else%>
+<%foreach(requires)%>
+ifeq ($(<%require%>),1)
+<%endfor%>
+<%foreach(avoids)%>
+ifneq ($(<%avoid%>),1)
+<%endfor%>
__postbuild__: $(GENERATED_DIRTY)
+<%foreach(avoids requires)%>
+endif
+<%endfor%>
<%endif%>
<%endif%>