summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-03-03 12:10:09 +0100
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-03-03 12:27:49 +0100
commit1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba (patch)
treea8c3faab6b8c5c93670fc8699f5cc32afb1e15fa
parent410bba8f9547f00d1d196b3d424f908bf2f2a3c8 (diff)
downloadnixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar.gz
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar.bz2
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar.lz
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar.xz
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.tar.zst
nixlib-1f7fe3dc07d76862da17dda37ac4d5190e0ec8ba.zip
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`.
-rw-r--r--pkgs/misc/emulators/vbam/default.nix2
1 files changed, 1 insertions, 1 deletions
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 = {