diff options
author | Eric NOULARD <eric.noulard@gmail.com> | 2011-02-22 21:56:26 (GMT) |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2011-02-22 21:56:26 (GMT) |
commit | 8c450f6287e45fa737de7d09a4f29ee7f4fdc9dd (patch) | |
tree | cfd0f7fea93cb53f149ae3110cb5465872c4a2d3 /Source/CPack/cmCPackRPMGenerator.cxx | |
parent | 62f816adde5312eb97724796efa8e4dff9534f54 (diff) | |
download | CMake-8c450f6287e45fa737de7d09a4f29ee7f4fdc9dd.zip CMake-8c450f6287e45fa737de7d09a4f29ee7f4fdc9dd.tar.gz CMake-8c450f6287e45fa737de7d09a4f29ee7f4fdc9dd.tar.bz2 |
CPack remove "-ALL" suffix for ALL-IN-ONE packages
First part fix of feature request 11814
Diffstat (limited to 'Source/CPack/cmCPackRPMGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackRPMGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackRPMGenerator.cxx b/Source/CPack/cmCPackRPMGenerator.cxx index 2d675c1..995adf6 100644 --- a/Source/CPack/cmCPackRPMGenerator.cxx +++ b/Source/CPack/cmCPackRPMGenerator.cxx @@ -158,7 +158,7 @@ int cmCPackRPMGenerator::PackageComponentsAllInOne(bool allComponent) ); std::string outputFileName( std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME")) - +"-ALL"+ this->GetOutputExtension() + + this->GetOutputExtension() ); // all GROUP in one vs all COMPONENT in one localToplevel += "/"+compInstDirName; |