* gentls_offsets: Fix typo in error message.
This commit is contained in:
parent
d6593503c6
commit
462c98e96a
|
@ -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>
|
2006-02-10 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* fhandler_process.cc (format_process_stat): Use cygwin-derived start
|
* fhandler_process.cc (format_process_stat): Use cygwin-derived start
|
||||||
|
|
|
@ -74,7 +74,7 @@ system @ARGV, '-o', "/tmp/$$-1.cc", '-E', "/tmp/$$.cc";
|
||||||
system 'g++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc" and
|
system 'g++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc" and
|
||||||
($? == 127 && system 'c++', '-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";
|
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";
|
open(OFFS, "/tmp/$$.a.out|") or die "$0: couldn't run \"/tmp/$$.a.out\" - $!\n";
|
||||||
print TLS_OUT <OFFS>;
|
print TLS_OUT <OFFS>;
|
||||||
close OFFS;
|
close OFFS;
|
||||||
|
|
Loading…
Reference in New Issue