fix a configure bug.

This commit is contained in:
okuji 1999-09-24 10:18:32 +00:00
parent 9bfb72e5d8
commit 55d36b7e2b
5 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
1999-09-24 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
* acinclude.m4 (grub_CHECK_END_SYMBOL): Add a missing
double-quote. Reported by Johannes Kroeger
<hanne@squirrel.owl.de>.
1999-09-14 Gordon Matzigkeit <gord@fig.org>
* stage1/stage1.S (blocklist_default_start): New label for default

1
THANKS
View file

@ -17,6 +17,7 @@ Eric Hanchrow <erich@microsoft.com>
Heiko Schroeder <heiko@pool.informatik.rwth-aachen.de>
Hisazumi Kenji <nel@soraneko.com>
Jochen Hoenicke <jochen@gnu.org>
Johannes Kroeger <hanne@squirrel.owl.de>
John Tobey <spam@john-edwin-tobey.org>
Klaus Reichl <klaus.reichl@alcatel.at>
Kunihiro Ishiguro <kunihiro@zebra.org>

View file

@ -227,7 +227,7 @@ AC_CACHE_VAL(grub_cv_check_end_symbol,
int
main (void)
{
asm ("incl end);
asm ("incl end");
return 0;
}
EOF

2
aclocal.m4 vendored
View file

@ -239,7 +239,7 @@ AC_CACHE_VAL(grub_cv_check_end_symbol,
int
main (void)
{
asm ("incl end);
asm ("incl end");
return 0;
}
EOF

2
configure vendored
View file

@ -1720,7 +1720,7 @@ else
int
main (void)
{
asm ("incl end);
asm ("incl end");
return 0;
}
EOF