diff options
author | Roman Lechtchinsky <rl@cs.tu-berlin.de> | 2002-05-22 20:57:15 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2002-05-22 16:57:15 -0400 |
commit | 9f3dbd92d22772fead769678ce0d326a5e74e0f3 (patch) | |
tree | 058658d20d6508c0ba67b3de3ae2b783eae81298 /libiberty/configure | |
parent | 19f71cd70f56591f6971f9d592d1f883f4dd7ac4 (diff) | |
download | gcc-9f3dbd92d22772fead769678ce0d326a5e74e0f3.tar.gz |
configure.in: Fix typo in the code checking for sys_errlist.
* configure.in: Fix typo in the code checking for sys_errlist.
* configure: Regenerated.
From-SVN: r53747
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-x | libiberty/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/configure b/libiberty/configure index fc89885f305..7f2c0a931a3 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -2860,7 +2860,7 @@ else #include "confdefs.h" int *p; int main() { -extern int $v []; p = &$v; +extern int $v []; p = $v; ; return 0; } EOF if { (eval echo configure:2867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |