diff options
author | Christopher Faylor <me@cgf.cx> | 2006-02-13 18:59:01 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-02-13 18:59:01 +0000 |
commit | 462c98e96a267e9da1e9ba9d230528336906c0d4 (patch) | |
tree | e875ae8486729b0479616d5564874750101f35ff /winsup | |
parent | d6593503c64c42c7ce7b46716c26338856f1664c (diff) | |
download | cygnal-462c98e96a267e9da1e9ba9d230528336906c0d4.tar.gz cygnal-462c98e96a267e9da1e9ba9d230528336906c0d4.tar.bz2 cygnal-462c98e96a267e9da1e9ba9d230528336906c0d4.zip |
* gentls_offsets: Fix typo in error message.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rwxr-xr-x | winsup/cygwin/gentls_offsets | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 406a45a96..0228a11e9 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2006-02-13 Igor Peshansky <pechtcha@cs.nyu.edu> + + * gentls_offsets: Fix typo in error message. + 2006-02-10 Christopher Faylor <cgf@timesys.com> * fhandler_process.cc (format_process_stat): Use cygwin-derived start diff --git a/winsup/cygwin/gentls_offsets b/winsup/cygwin/gentls_offsets index 322751849..931eac3f8 100755 --- a/winsup/cygwin/gentls_offsets +++ b/winsup/cygwin/gentls_offsets @@ -74,7 +74,7 @@ system @ARGV, '-o', "/tmp/$$-1.cc", '-E', "/tmp/$$.cc"; system 'g++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc" and ($? == 127 && system 'c++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc") and die "$0: couldn't generate executable for offset calculation \"/tmp/$$.a.out\" - $!\n"; -open(TLS_OUT, '>', $tls_out) or die "$0: couldn't open tls index file \"tls_out\" - $!\n"; +open(TLS_OUT, '>', $tls_out) or die "$0: couldn't open tls index file \"$tls_out\" - $!\n"; open(OFFS, "/tmp/$$.a.out|") or die "$0: couldn't run \"/tmp/$$.a.out\" - $!\n"; print TLS_OUT <OFFS>; close OFFS; |