1
0
mirror of https://github.com/mintty/wsltty.git synced 2025-01-18 20:10:58 +00:00
This commit is contained in:
mintty 2018-02-06 10:51:07 +01:00
parent 2fb7d02091
commit 65553b90ef
3 changed files with 13 additions and 14 deletions

2
README.md Normal file → Executable file
View File

@ -17,7 +17,7 @@ WSLtty components
### Installation ###
#### WSLtty installer ####
#### WSLtty installer ([Download](https://github.com/mintty/wsltty/releases) standalone installation) ####
Run the [installer](https://github.com/mintty/wsltty/releases) to install
the components listed above.

View File

@ -1 +1 @@
1.8.3.2
1.8.4

View File

@ -2,17 +2,17 @@
# build a wsltty installer package:
# configure ver=... and minttyver= in this makefile
# make targets:
# make [all] to build a distributable installer (default)
# make pkg to build an installer, bypassing the system checks
# make wsltty to build an installer using the local copy of mintty
# make [all] build a distributable installer (default)
# make pkg build an installer, bypassing the system checks
# make wsltty build the software, using the local copy of mintty
# wsltty release
ver=1.8.3.2
ver=1.8.4
##############################
# mintty release version
minttyver=2.8.3
minttyver=2.8.4
# or mintty branch or commit version
#minttyver=master
@ -61,18 +61,17 @@ wget=curl -R -L --connect-timeout 55 -O
wgeto=curl -R -L --connect-timeout 55
#############################################################################
# system check;
# for now, let's enforce Cygwin 32-Bit as the container for wsltty
# just in case there is a 32-Bit WSL released (-> 32 bit), and to ensure
# the path name drag-and-drop adaptation works (-> cygwin, not msys)
# system check:
# - ensure the path name drag-and-drop adaptation works (-> Cygwin, not MSYS)
# - 64 Bit (x86_64) for more stable invocation (avoid fork issues)
check:
# checking suitable host environment; run `make pkg` to bypass
# check cygwin (vs msys) for proper drag-and-drop paths:
uname | grep CYGWIN
# check 32 bit (vs 64 bit) to ensure 32-Bit Windows support, just in case:
# check 32 bit to ensure 32-Bit Windows support, just in case:
#uname -m | grep i686
# check 64 bit (vs 32 bit) to provide 64-Bit stability support:
# check 64 bit to provide 64-Bit stability support:
uname -m | grep x86_64
#############################################################################
@ -169,7 +168,7 @@ ver:
pkg: wslbridge cygwin mintty cab
wsltty: wslbridge cygwin mintty-build cab
wsltty: wslbridge cygwin mintty-build
#############################################################################
# end