# HG changeset patch # User Oleksandr Gavenko # Date 1485289188 -7200 # Node ID 257a65e6378088ca3dbd2ec243f0c757829bce7a # Parent bbadb46574c4e029043f3eac718449467a139969 Fix: Under Windows there is mc command that is Message Compiler. diff -r bbadb46574c4 -r 257a65e63780 Makefile --- a/Makefile Tue Jan 24 22:18:12 2017 +0200 +++ b/Makefile Tue Jan 24 22:19:48 2017 +0200 @@ -128,7 +128,7 @@ rm -f ~/.bash_profile ln -s ~/.bashrc ~/.bash_profile command -v /usr/bin/mc || exit 0; \ - v=`mc --version | sed 's|.*\([0-9]\+\.[0-9]\+\.[0-9]\+\)$$|\1|;q'`; \ + v=`/usr/bin/mc --version | sed 's|.*\([0-9]\+\.[0-9]\+\.[0-9]\+\)$$|\1|;q'`; \ vmajor=$${v%%.*}; \ vminor=$${v#*.}; \ vminor=$${vminor%.*}; \