summaryrefslogtreecommitdiffstats
path: root/pkgs/games/egoboo
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-01-18 20:16:00 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-01-18 20:16:00 +0000
commitc556a6ea46e71e1907d78b71fab36df30297b3ad (patch)
tree91a51d04a39ab4db1fb5182b56ce63cf9d9779b9 /pkgs/games/egoboo
parentf7159c195a623c311829c38c40ef010ac6e943f7 (diff)
* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
Diffstat (limited to 'pkgs/games/egoboo')
-rw-r--r--pkgs/games/egoboo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/egoboo/default.nix b/pkgs/games/egoboo/default.nix
index a1b7262f3b97..1f879393868f 100644
--- a/pkgs/games/egoboo/default.nix
+++ b/pkgs/games/egoboo/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
# The user will need to have all the files in '.' to run egoboo, with
# writeable controls.txt and setup.txt
installPhase = ''
- ensureDir $out/share/${name}
+ mkdir -p $out/share/${name}
cp -v game/egoboo $out/share/${name}
cd ..
cp -v -Rd controls.txt setup.txt players modules basicdat $out/share/${name}