summaryrefslogtreecommitdiffstats
path: root/release.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2009-02-24 16:24:01 (GMT)
committerEelco Dolstra <e.dolstra@tudelft.nl>2009-02-24 16:24:01 (GMT)
commitcd4401416395a5964817207b8ff6700ca365cf88 (patch)
tree0bc9d8be169878ff5b5bfe047e800e6f67fbff89 /release.nix
parent474641ca07d28ed77b73d96a47eb05d0331c698f (diff)
downloadpatchelf-cd4401416395a5964817207b8ff6700ca365cf88.zip
patchelf-cd4401416395a5964817207b8ff6700ca365cf88.tar.gz
patchelf-cd4401416395a5964817207b8ff6700ca365cf88.tar.bz2
* Work around a checkinstall bug that for some reason only triggers on
Ubuntu 8.10 (e.g. http://hydra.nixos.org/nixlog/2045/8).
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/release.nix b/release.nix
index edc9bfc..d2f6029 100644
--- a/release.nix
+++ b/release.nix
@@ -105,6 +105,12 @@ let
src = tarball;
diskImage = diskImageFun vmTools.diskImages;
meta = { schedulingPriority = toString prio; };
+
+ # Work around a bug in (apparently) checkinstall, which causes
+ # `make install' to fail on Ubuntu 8.10.
+ preInstall = ''
+ mkdir -p /usr/share/doc/patchelf
+ '';
};