diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-05-13 11:26:48 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-05-13 11:26:48 +0200 |
commit | 33bb43415b40cf1e65b335be3be44f4bf40a7d05 (patch) | |
tree | 7298f35d6fa7c6f52a26b7285583b7a2cd476fa7 /cpp/src/slice2cppe | |
parent | Removed plural for JDK. (diff) | |
download | ice-33bb43415b40cf1e65b335be3be44f4bf40a7d05.tar.bz2 ice-33bb43415b40cf1e65b335be3be44f4bf40a7d05.tar.xz ice-33bb43415b40cf1e65b335be3be44f4bf40a7d05.zip |
Fixed bug 3156 - Install .pdb files if RELEASEPDBS=yes
Diffstat (limited to 'cpp/src/slice2cppe')
-rw-r--r-- | cpp/src/slice2cppe/Makefile.mak | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/src/slice2cppe/Makefile.mak b/cpp/src/slice2cppe/Makefile.mak index 50bcfd24857..40d52ace566 100644 --- a/cpp/src/slice2cppe/Makefile.mak +++ b/cpp/src/slice2cppe/Makefile.mak @@ -45,20 +45,17 @@ clean:: install:: all
copy $(NAME) $(install_bindir)
-!if "$(OPTIMIZE)" != "yes"
-!if "$(CPP_COMPILER)" == "BCC2007"
+!if "$(CPP_COMPILER)" == "BCC2007" && "$(OPTIMIZE)" != "yes"
install:: all
copy $(NAME:.exe=.tds) $(install_bindir)
-!else
+!elseif "$(GENERATE_PDB)" == "yes"
install:: all
copy $(NAME:.exe=.pdb) $(install_bindir)
!endif
-!endif
-
!include .depend
|