Fix compilation error due to file descriptor
In Makefile, the file descriptor 10 is used to redirect input to .config: $(MAKE) -f $(SRCDIR)Makefile.configure OUT='>&10' configure 10> $@ This patch replaces this file descriptor from to 10 to 9 as "Redirections using file descriptors greater than 9 should be used with care, as they may conflict with file descriptors the shell uses internally." (cf. https://www.gnu.org/software/bash/manual/html_node/Redirections.html ) Signed-off-by:Fabrice Fontaine <fabrice.fontaine@orange.com> Signed-off-by:
Thiago Macieira <thiago.macieira@intel.com>
想要评论请 注册 或 登录