summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-05-01 10:56:14 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-05-01 10:56:14 -0230
commit55df4860bc7ec3bc8a2bd9f5ef16a8e5f7c91146 (patch)
tree45f6eb8e8ad6ec88b0fd910a458533a93eea7e6a
parentReadded fixCopyright and fixVersion scripts (diff)
downloadice-55df4860bc7ec3bc8a2bd9f5ef16a8e5f7c91146.tar.bz2
ice-55df4860bc7ec3bc8a2bd9f5ef16a8e5f7c91146.tar.xz
ice-55df4860bc7ec3bc8a2bd9f5ef16a8e5f7c91146.zip
Fix to prevent build leaving ".cpp" file in IceDiscovery directory.
-rw-r--r--cpp/src/IceDiscovery/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceDiscovery/Makefile b/cpp/src/IceDiscovery/Makefile
index cc53ced7da6..356ea66e20e 100644
--- a/cpp/src/IceDiscovery/Makefile
+++ b/cpp/src/IceDiscovery/Makefile
@@ -55,11 +55,11 @@ endif
../IceDiscovery/IceDiscovery.h IceDiscovery.cpp: \
$(slicedir)/IceDiscovery/IceDiscovery.ice $(SLICE2CPP) $(SLICEPARSERLIB)
- rm -f $(*F).h $(*F).cpp
+ rm -f IceDiscovery.h IceDiscovery.cpp
$(SLICE2CPP) $(SLICE2CPPFLAGS) $(slicedir)/IceDiscovery/IceDiscovery.ice
- @touch $(*F).cpp
+ @touch IceDiscovery.cpp
@mkdir -p .depend
- @$(SLICE2CPP) $(SLICE2CPPFLAGS) --depend $(slicedir)/IceDiscovery/IceDiscovery.ice > .depend/$(*F).ice.d
+ @$(SLICE2CPP) $(SLICE2CPPFLAGS) --depend $(slicedir)/IceDiscovery/IceDiscovery.ice > .depend/IceDiscovery.ice.d
install:: all
$(call installlib,$(DESTDIR)$(install_libdir),$(libdir),$(LIBFILENAME),$(SONAME),$(LIBNAME))