# HG changeset patch
# User Oleksandr Gavenko <gavenkoa@gmail.com>
# Date 1531322839 -10800
# Node ID 90d1d342a8969e584e2abaf8451372565ec81882
# Parent  87a79ec44985ad66aba69eb42455f7ed37965222
Make copy of ~/.bash_profile instead symlink as Cygwin installation conflicts
with WSL:

bash: symlink: No such file or directory

diff -r 87a79ec44985 -r 90d1d342a896 Makefile
--- a/Makefile	Wed Jul 11 18:25:46 2018 +0300
+++ b/Makefile	Wed Jul 11 18:27:19 2018 +0300
@@ -141,7 +141,7 @@
 	rm -f ~/.xsession
 	ln -s ~/.xinitrc ~/.xsession
 	rm -f ~/.bash_profile
-	ln -s ~/.bashrc ~/.bash_profile
+	cp ~/.bashrc ~/.bash_profile
 	command -v /usr/bin/mc || exit 0; \
 	v=`/usr/bin/mc --version | sed 's|.*\([0-9]\+\.[0-9]\+\.[0-9]\+\)$$|\1|;q'`; \
 	vmajor=$${v%%.*}; \