mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Fix typo. * iconvdata/gap.pl: Avoid using %#06x. 1998-03-31 19:55 Zack Weinberg <zack@rabi.phys.columbia.edu> * Makerules: Use $? instead of S^ when invoking ar. 1998-03-31 Ulrich Drepper <drepper@cygnus.com>
This commit is contained in:
parent
3331899af3
commit
f5baa731d0
10
ChangeLog
10
ChangeLog
|
|
@ -1,3 +1,13 @@
|
||||||
|
1998-03-31 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Fix typo.
|
||||||
|
|
||||||
|
* iconvdata/gap.pl: Avoid using %#06x.
|
||||||
|
|
||||||
|
1998-03-31 19:55 Zack Weinberg <zack@rabi.phys.columbia.edu>
|
||||||
|
|
||||||
|
* Makerules: Use $? instead of S^ when invoking ar.
|
||||||
|
|
||||||
1998-03-31 Ulrich Drepper <drepper@cygnus.com>
|
1998-03-31 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* db2/compat.h: Allow EFTYPE being defined.
|
* db2/compat.h: Allow EFTYPE being defined.
|
||||||
|
|
|
||||||
|
|
@ -576,7 +576,7 @@ define do-ar
|
||||||
topdir=`cd $(..).; pwd`; \
|
topdir=`cd $(..).; pwd`; \
|
||||||
$(patsubst %/,cd %;,$(objpfx)) \
|
$(patsubst %/,cd %;,$(objpfx)) \
|
||||||
$(SHELL) $$topdir/autolock.sh ${O%-lib}.lck $(AR) $(CREATE_ARFLAGS) ${O%-lib} \
|
$(SHELL) $$topdir/autolock.sh ${O%-lib}.lck $(AR) $(CREATE_ARFLAGS) ${O%-lib} \
|
||||||
$(patsubst $(objpfx)%,%,$^)
|
$(patsubst $(objpfx)%,%,$?)
|
||||||
rm -f $@
|
rm -f $@
|
||||||
touch $@
|
touch $@
|
||||||
endef
|
endef
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ while (<>) {
|
||||||
local($u)=hex($ucs);
|
local($u)=hex($ucs);
|
||||||
if ($u - $last > 6) {
|
if ($u - $last > 6) {
|
||||||
if ($last != 0) {
|
if ($last != 0) {
|
||||||
printf (" { start: %#06x, end: %#06x, idx: %5d },\n",
|
printf (" { start: 0x%04x, end: 0x%04x, idx: %5d },\n",
|
||||||
$first, $last, $idx - $first);
|
$first, $last, $idx - $first);
|
||||||
$idx += $last - $first + 1;
|
$idx += $last - $first + 1;
|
||||||
}
|
}
|
||||||
|
|
@ -12,5 +12,5 @@ while (<>) {
|
||||||
}
|
}
|
||||||
$last=$u;
|
$last=$u;
|
||||||
}
|
}
|
||||||
printf (" { start: %#06x, end: %#06x, idx: %5d },\n",
|
printf (" { start: 0x%04x, end: 0x%04x, idx: %5d },\n",
|
||||||
$first, $last, $idx - $first);
|
$first, $last, $idx - $first);
|
||||||
|
|
|
||||||
|
|
@ -335,7 +335,7 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz,
|
||||||
total = temp[0].len;
|
total = temp[0].len;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
total = (1 << (cnt - 2)) * (temp[0].len = temp[cnt - 1].len + 2);
|
total = (1 << (cnt - 2)) * (temp[0].len + temp[cnt - 1].len + 2);
|
||||||
for (n = 1; n + 1 < cnt; ++n)
|
for (n = 1; n + 1 < cnt; ++n)
|
||||||
total += (1 << (cnt - 3)) * (temp[n].len + 1);
|
total += (1 << (cnt - 3)) * (temp[n].len + 1);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue