Weston: prevent install to chown root weston-launch.

This operation fails with permission denied, and since this launcher is only
needed when not running under X, I leave it disabled for the moment.
This commit is contained in:
Carles Pagès 2012-12-07 12:28:35 +01:00
parent ec99d9603c
commit c2189c49c6
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ stdenv.mkDerivation rec {
preConfigure = "autoreconf -vfi";
# prevent install target to chown root weston-launch, which fails
configureFlags = ''
--disable-setuid-install
'';
meta = {
description = "Reference implementation of a Wayland compositor";
homepage = http://wayland.freedesktop.org/;