Changeset 66595 in vbox
- Timestamp:
- Apr 17, 2017 3:30:30 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/Makefile.kmk
r64923 r66595 46 46 47 47 # RTManifest is a tool for creating and verifying manifest files. 48 PROGRAMS += RTCat 49 RTCat_TEMPLATE = VBoxR3Tool 50 RTCat_SOURCES = RTCat.cpp 51 52 # RTRm is a tool for removing files and directories. 48 53 PROGRAMS += RTRm 49 54 RTRm_TEMPLATE = VBoxR3Tool -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r62724 r66595 519 519 if (!Opts.fStdOut && RTVfsChainIsSpec(ValueUnion.psz)) 520 520 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Must use standard out with VFS chain specifications"); 521 if (Opts.fName) 521 if ( Opts.fName 522 && !Opts.fList 523 && !Opts.fTest 524 && !Opts.fDecompress) 522 525 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "The --name option has not yet been implemented. Use --no-name."); 523 526 if (Opts.fAscii)
Note:
See TracChangeset
for help on using the changeset viewer.