Kodi Community Forum
[info] missing chomd +x to confingures on 8.10 tarball - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Kodi related discussions (https://forum.kodi.tv/forumdisplay.php?fid=6)
+--- Thread: [info] missing chomd +x to confingures on 8.10 tarball (/showthread.php?tid=40893)



[info] missing chomd +x to confingures on 8.10 tarball - anubisg1 - 2008-11-23

as topic all configure files in 8.10 tarball miss the exec bit.. without search for any configure file i fixed with a single command:

Code:
cd XBMC
`for i in $(find -name 'configure'); do chmod +x $i; done`

you may whant to fix or at least write some lines


- anubisg1 - 2008-11-23

please check all missing exec bits...


Code:
cd ./libavdevice/ && ln -sf libavdevice.so.52 libavdevice.so
texi2html -monolithic -number doc/ffmpeg-doc.texi
** `Invocation' is up for `FFmpeg formula evaluator', but has no menu entry for this node
mv ffmpeg-doc.html doc/ffmpeg-doc.html
texi2html -monolithic -number doc/faq.texi
mv faq.html doc/faq.html
texi2html -monolithic -number doc/ffserver-doc.texi
mv ffserver-doc.html doc/ffserver-doc.html
texi2html -monolithic -number doc/ffplay-doc.texi
mv ffplay-doc.html doc/ffplay-doc.html
texi2html -monolithic -number doc/general.texi
** `Developers Guide' is up for `Coding Rules', but has no menu entry for this node
mv general.html doc/general.html
texi2html -monolithic -number doc/hooks.texi
mv hooks.html doc/hooks.html
doc/texi2pod.pl doc/ffmpeg-doc.texi doc/ffmpeg.pod
make[2]: execvp: doc/texi2pod.pl: Permission denied
make[2]: *** [doc/ffmpeg.pod] Error 127
make[2]: Leaving directory `/usr/src/packages/BUILD/XBMC/xbmc/cores/dvdplayer/Codecs/ffmpeg'
make[1]: *** [ffmpeg] Error 2
make[1]: Leaving directory `/usr/src/packages/BUILD/XBMC/xbmc/cores/dvdplayer/Codecs'
make: *** [dvdpcodecs] Error 2

does texi2pod.pl miss +x?

---edit---

the problem is indeed that one.. i fixed like that:

Code:
`for i in $(find -name '*.pl'); do chmod +x $i; done`

maybe not all perl files need the exec bit but it works now Tongue