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`.
This commit is contained in:
Benno Fünfstück 2017-03-03 12:10:09 +01:00
parent 410bba8f95
commit 1f7fe3dc07

View File

@ -47,7 +47,7 @@ stdenv.mkDerivation {
"-DCMAKE_BUILD_TYPE='Release'"
"-DENABLE_FFMPEG='true'"
#"-DENABLE_LINK='true'" currently broken :/
"-DSYSCONFDIR='$out/etc'"
"-DSYSCONFDIR=etc"
];
meta = {