about summary refs log tree commit diff
path: root/configure
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2011-07-11 18:38:13 -0700
committerRoland McGrath <roland@hack.frob.com>2011-07-11 18:38:13 -0700
commitdefe906180bad4e356bb55b60b10abd41b7ee3a1 (patch)
treefa666c8b5304820b49c9eaaf8e3c295958ef4720 /configure
parent319b9ad4bccedb2a6b1a222cf446e873b2bc6de1 (diff)
downloadglibc-defe906180bad4e356bb55b60b10abd41b7ee3a1.tar.gz
glibc-defe906180bad4e356bb55b60b10abd41b7ee3a1.tar.xz
glibc-defe906180bad4e356bb55b60b10abd41b7ee3a1.zip
Fix a braino in new relro configure test.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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