diff options
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index 3b4287a1008..6fa3c55ba3d 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -299,8 +299,11 @@ ifeq ($(findstring g++,$(CXX)),g++) endif # ! ACE_HAS_GNUG_PRE_2_8 endif # g++ +# We dont want to hard code. Looks like the contents of VDIR should +# have the right contents in any type of builds. If not, folks please +# feel to revert it to the way things were in rev 4.114. ifndef OBJDIRS - OBJDIRS = .obj .shobj # .obj_debug .obj_profile .obj_optimize + OBJDIRS = $(basename $(VDIR)) endif # OBJDIRS ifndef OBJEXT |