diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-06-01 14:42:11 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-06-01 14:42:11 +0000 |
commit | 12139ca306df26046c14c98c6dc13bd15d3071a2 (patch) | |
tree | f0d684381c965f4a25a4cad5ab17b6514aff4019 | |
parent | 36d173fb67a9ecb5548538963237d5ef2dc3694a (diff) | |
download | glibc-12139ca306df26046c14c98c6dc13bd15d3071a2.tar.gz glibc-12139ca306df26046c14c98c6dc13bd15d3071a2.tar.xz glibc-12139ca306df26046c14c98c6dc13bd15d3071a2.zip |
Fix typo in MIPS abi-n32-condition.
-rw-r--r-- | ChangeLog.mips | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/Makefile | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog.mips b/ChangeLog.mips index f72dc4e41b..5cd25e790e 100644 --- a/ChangeLog.mips +++ b/ChangeLog.mips @@ -1,3 +1,8 @@ +2012-06-01 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/unix/sysv/linux/mips/Makefile (abi-n32-condition): Fix + typo. + 2012-05-31 Joseph Myers <joseph@codesourcery.com> * sysdeps/mips/mips64/libm-test-ulps: Remove sqrt ulps. diff --git a/sysdeps/unix/sysv/linux/mips/Makefile b/sysdeps/unix/sysv/linux/mips/Makefile index 2bbc9a4dfb..99c554ff67 100644 --- a/sysdeps/unix/sysv/linux/mips/Makefile +++ b/sysdeps/unix/sysv/linux/mips/Makefile @@ -8,13 +8,13 @@ sysdep_routines += cachectl cacheflush sysmips _test_and_set sysdep_headers += sys/cachectl.h sys/sysmips.h sys/tas.h endif -# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_ABIN32 == 2, _MIPS_SIM_ABI64 == 3 +# _MIPS_SIM_ABI32 == 1, _MIPS_SIM_NABI32 == 2, _MIPS_SIM_ABI64 == 3 abi-variants := o32 n32 n64 abi-includes := sgidefs.h abi-o32-options := -D_MIPS_SIM=1 abi-o32-condition := _MIPS_SIM == _MIPS_SIM_ABI32 abi-n32-options := -D_MIPS_SIM=2 -abi-n32-condition := _MIPS_SIM == _MIPS_SIM_ABIN32 +abi-n32-condition := _MIPS_SIM == _MIPS_SIM_NABI32 abi-n64-options := -D_MIPS_SIM=3 abi-n64-condition := _MIPS_SIM == _MIPS_SIM_ABI64 |