summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/CPack/cmCPackDebGenerator.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackDebGenerator.cxx b/Source/CPack/cmCPackDebGenerator.cxx
index fb799d0..0971b36 100644
--- a/Source/CPack/cmCPackDebGenerator.cxx
+++ b/Source/CPack/cmCPackDebGenerator.cxx
@@ -24,7 +24,12 @@
#include <cmsys/SystemTools.hxx>
#include <cmsys/Glob.hxx>
-
+// NOTE:
+// A debian package .deb is simply an 'ar' archive. The only subtle difference
+// is that debian uses the BSD ar style archive whereas most Linux distro have
+// a GNU ar.
+// See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=161593 for more info
+// Therefore we provide our own implementation of a BSD-ar:
static int ar_append(const char*archive,const std::vector<std::string>& files);
//----------------------------------------------------------------------
@@ -97,7 +102,6 @@ int cmCPackDebGenerator::CompressFiles(const char* outFileName,
}
out << "Maintainer: " << maintainer << "\n";
out << "Description: " << desc << "\n";
- out << " " << debian_pkg_name << " was packaged by CMake.\n";
out << std::endl;
}