From 1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Fri, 3 Mar 2017 12:10:09 +0100 Subject: [PATCH] vbam: fix location of etc in output Shell variables are not expanded in cmakeFlags, so the etc files ended up in `$out/'$out'/etc` instead of the expected `$out/etc`. --- pkgs/misc/emulators/vbam/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/misc/emulators/vbam/default.nix b/pkgs/misc/emulators/vbam/default.nix index 82193bc350b6..8ef64a11a177 100644 --- a/pkgs/misc/emulators/vbam/default.nix +++ b/pkgs/misc/emulators/vbam/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { "-DCMAKE_BUILD_TYPE='Release'" "-DENABLE_FFMPEG='true'" #"-DENABLE_LINK='true'" currently broken :/ - "-DSYSCONFDIR='$out/etc'" + "-DSYSCONFDIR=etc" ]; meta = {