Actions
Bug #2852
closedCompile fails since r2831 / commit 6327e58 --> gzip not found in Makefile.webui
Status:
Fixed
Priority:
Normal
Assignee:
-
Category:
General
Target version:
-
Start date:
2015-05-17
Due date:
% Done:
100%
Estimated time:
Found in version:
v4.1.r5.gea70c10
Affected Versions:
Description
Since commit 6327e58 the build process barks on "gzip not found". See below:
[..]
Receiving data/dvb-scan/dvb-t from http://linuxtv.org/git/dtv-scan-tables.git
make -f Makefile.webui all
make[1]: Entering directory '/home/volker/builds/tvheadend-git/src/tvheadend'
make -f Makefile.webui WEBUI=std compile-std
make[2]: Entering directory '/home/volker/builds/tvheadend-git/src/tvheadend'
src/webui/static/tvh.js.gz.tmp 1217817
src/webui/static/tvh.js.gz.tmp2 982191
gzip: gzip: No such file or directory
Makefile.webui:195: recipe for target 'src/webui/static/tvh.js.gz' failed
make[2]: *** [src/webui/static/tvh.js.gz] Error 1
make[2]: Leaving directory '/home/volker/builds/tvheadend-git/src/tvheadend'
Makefile.webui:175: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/home/volker/builds/tvheadend-git/src/tvheadend'
Makefile:474: recipe for target 'make_webui' failed
make: *** [make_webui] Error 2
==> ERROR: A failure occurred in build().
Aborting...
Fixing this with
sed -i -e "s|gzip|/usr/bin/gzip|g" Makefile.webui
Now it complies fine.
Actions