From defe906180bad4e356bb55b60b10abd41b7ee3a1 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 11 Jul 2011 18:38:13 -0700 Subject: Fix a braino in new relro configure test. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index ffeb89057f..d44659bb2c 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3