enlightenment.enlightenment: no need to fix edje_cc path

Upstream looks for the edje_cc binary (which is provided by efl) in
the bin subdirectory of the enlightenment package prefix. If not found
it is called without giving a directory (that is, it defaults to
$PATH). Therefore a fix is not needed anymore.
This commit is contained in:
José Romildo Malaquias 2020-05-22 15:59:58 -03:00
parent 4e7552c5fd
commit 140eb221b2

View file

@ -65,12 +65,6 @@ stdenv.mkDerivation rec {
];
postPatch = ''
# edge_cc is a binary provided by efl and cannot be found at the directory
# given by e_prefix_bin_get(), which is $out/bin
substituteInPlace src/bin/e_import_config_dialog.c \
--replace "e_prefix_bin_get()" "\"${efl}/bin\""
substituteInPlace src/modules/everything/evry_plug_calc.c \
--replace "ecore_exe_pipe_run(\"bc -l\"" "ecore_exe_pipe_run(\"${bc}/bin/bc -l\""
'';