* Patched checkinstall to include empty directory in packages.

svn path=/nixpkgs/trunk/; revision=14736
This commit is contained in:
Eelco Dolstra
2009-03-27 14:13:23 +00:00
parent 8fffed2ba1
commit 7a0f6b1a40
2 changed files with 57 additions and 0 deletions
@@ -8,6 +8,14 @@ stdenv.mkDerivation {
sha256 = "0k8i551rcn2g0jxskq2sgy4m85irdf5zsl2q4w9b7npgnybkzsmb";
};
patches = [
# Include empty directories created by the installation script in
# generated packages. (E.g., if a `make install' does `mkdir
# /var/lib/mystuff', then /var/lib/mystuff should be included in
# the package.)
./empty-dirs.patch
];
buildInputs = [gettext];
preBuild = ''