Skip to content

Commit

Permalink
evolution_data_server: wrap all and only executables
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Aug 9, 2017
1 parent 46a25ea commit 5e89bca
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

preFixup = ''
for f in "$out/libexec/"*; do
for f in $(find $out/libexec/ -type f -executable); do
wrapProgram "$f" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib dconf}/lib/gio/modules"
Expand Down

0 comments on commit 5e89bca

Please sign in to comment.