* Don't do a mkdir in the postHook.

svn path=/nixpkgs/trunk/; revision=33569
This commit is contained in:
Eelco Dolstra 2012-04-04 16:05:08 +00:00
parent bf791214c9
commit 8ecdd3a0aa

View File

@ -90,7 +90,7 @@ stdenv.mkDerivation (
buildInputs = buildInputs ++ bootstrapBuildInputs;
postHook = ''
preUnpack = ''
mkdir -p $out/nix-support
'';