diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/m68k/start.S | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2017-10-20 H.J. Lu <hongjiu.lu@intel.com> + + * sysdeps/m68k/start.S (_start): Check PIC instead of SHARED. + 2017-10-20 Mike FABIAN <mfabian@redhat.com> [BZ #13605] diff --git a/sysdeps/m68k/start.S b/sysdeps/m68k/start.S index 71ba3b9..9f5d588 100644 --- a/sysdeps/m68k/start.S +++ b/sysdeps/m68k/start.S @@ -76,7 +76,7 @@ _start: pea (%a1) /* Push address of the shared library termination function. */ -#ifdef SHARED +#ifdef PIC /* Load PIC register. */ LOAD_GOT (%a5) |