3
0
Fork 0
forked from mirrors/nixpkgs

* Don't use /dev/stdout because it isn't writable when the build user doesn't own stdout.

svn path=/nixpkgs/trunk/; revision=8307
This commit is contained in:
Eelco Dolstra 2007-03-16 16:16:59 +00:00
parent bf715af18b
commit 2946af6e52

View file

@ -21,7 +21,9 @@ stdenv.mkDerivation {
configureScript = "sh ./configure";
configureFlags = "--without-ttf --without-png --with-fifo=/var/run/splash_fifo";
makeFlags = "QUIET=false";
# QUIET = false doesn't work due to the use of /dev/stdout (which
# doesn't work when the build user doesn't own stdout).
#makeFlags = "QUIET=false;
installPhase = "ensureDir $out/bin; cp objs/splash_helper objs/splash_util objs/splash_util.static $out/bin";
}