1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Fix a braino in new relro configure test.

This commit is contained in:
Roland McGrath
2011-07-11 18:38:13 -07:00
parent 319b9ad4bc
commit defe906180
3 changed files with 8 additions and 2 deletions

2
configure vendored
View File

@ -6404,7 +6404,7 @@ else
int _start (void) { return 42; }
extern void _exit (int);
const void *relro[] = { &_start, &_exit, 0 };
const void *const relro[] = { &_start, &_exit, 0 };
_ACEOF
cat > conftest.awk <<\EOF