fix a configure bug.
This commit is contained in:
parent
9bfb72e5d8
commit
55d36b7e2b
5 changed files with 10 additions and 3 deletions
|
@ -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>
|
1999-09-14 Gordon Matzigkeit <gord@fig.org>
|
||||||
|
|
||||||
* stage1/stage1.S (blocklist_default_start): New label for default
|
* stage1/stage1.S (blocklist_default_start): New label for default
|
||||||
|
|
1
THANKS
1
THANKS
|
@ -17,6 +17,7 @@ Eric Hanchrow <erich@microsoft.com>
|
||||||
Heiko Schroeder <heiko@pool.informatik.rwth-aachen.de>
|
Heiko Schroeder <heiko@pool.informatik.rwth-aachen.de>
|
||||||
Hisazumi Kenji <nel@soraneko.com>
|
Hisazumi Kenji <nel@soraneko.com>
|
||||||
Jochen Hoenicke <jochen@gnu.org>
|
Jochen Hoenicke <jochen@gnu.org>
|
||||||
|
Johannes Kroeger <hanne@squirrel.owl.de>
|
||||||
John Tobey <spam@john-edwin-tobey.org>
|
John Tobey <spam@john-edwin-tobey.org>
|
||||||
Klaus Reichl <klaus.reichl@alcatel.at>
|
Klaus Reichl <klaus.reichl@alcatel.at>
|
||||||
Kunihiro Ishiguro <kunihiro@zebra.org>
|
Kunihiro Ishiguro <kunihiro@zebra.org>
|
||||||
|
|
|
@ -227,7 +227,7 @@ AC_CACHE_VAL(grub_cv_check_end_symbol,
|
||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
{
|
{
|
||||||
asm ("incl end);
|
asm ("incl end");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
2
aclocal.m4
vendored
2
aclocal.m4
vendored
|
@ -239,7 +239,7 @@ AC_CACHE_VAL(grub_cv_check_end_symbol,
|
||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
{
|
{
|
||||||
asm ("incl end);
|
asm ("incl end");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -1720,7 +1720,7 @@ else
|
||||||
int
|
int
|
||||||
main (void)
|
main (void)
|
||||||
{
|
{
|
||||||
asm ("incl end);
|
asm ("incl end");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue