Index: /trunk/src/VBox/Runtime/tools/RTManifest.cpp
===================================================================
--- /trunk/src/VBox/Runtime/tools/RTManifest.cpp	(revision 60737)
+++ /trunk/src/VBox/Runtime/tools/RTManifest.cpp	(revision 60738)
@@ -369,7 +369,9 @@
                 return RTEXITCODE_SUCCESS;
 
+#ifndef IN_BLD_PROG  /* RTBldCfgVersion or RTBldCfgRevision in build time IPRT lib. */
             case 'V':
                 RTPrintf("%sr%d\n", RTBldCfgVersion(), RTBldCfgRevision());
                 return RTEXITCODE_SUCCESS;
+#endif
 
             default:
Index: /trunk/src/VBox/Runtime/tools/RTSignTool.cpp
===================================================================
--- /trunk/src/VBox/Runtime/tools/RTSignTool.cpp	(revision 60737)
+++ /trunk/src/VBox/Runtime/tools/RTSignTool.cpp	(revision 60738)
@@ -830,6 +830,10 @@
 static RTEXITCODE HandleVersion(int cArgs, char **papszArgs)
 {
+#ifndef IN_BLD_PROG  /* RTBldCfgVersion or RTBldCfgRevision in build time IPRT lib. */
     RTPrintf("%s\n", RTBldCfgVersion());
     return RTEXITCODE_SUCCESS;
+#else
+    return RTEXITCODE_FAILURE;
+#endif
 }
 
