mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-20 21:39:21 +08:00
ff315bd18f
Invoke grep in text mode when looking for version strings inside the cygwin DLL, so it outputs something more informative than: Binary file ../cygwin/cygwin0.dll matches
14 lines
294 B
Plaintext
14 lines
294 B
Plaintext
proc winsup_version {} {
|
|
global env
|
|
global rootme
|
|
clone_output "\n[exec grep -a ^%%% $rootme/../cygwin/cygwin0.dll]\n"
|
|
if { [info exists env(CYGWIN)] } {
|
|
clone_output "CYGWIN=$env(CYGWIN)\n"
|
|
} else {
|
|
clone_output "CYGWIN=\n"
|
|
}
|
|
}
|
|
|
|
proc winsup_exit {} {
|
|
}
|