diff options
author | Marcus Shawcroft <marcus.shawcroft@linaro.org> | 2012-11-14 23:06:40 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@linaro.org> | 2012-11-14 23:06:40 +0000 |
commit | f507f7d598aec75a51689abf5863122b49ca6954 (patch) | |
tree | 270bbb92e455cbfed78bc7b31976a47465684f7f /ports | |
parent | c485e4d2cce71139eb914797d862bf6d373a4684 (diff) | |
download | glibc-f507f7d598aec75a51689abf5863122b49ca6954.zip glibc-f507f7d598aec75a51689abf5863122b49ca6954.tar.gz glibc-f507f7d598aec75a51689abf5863122b49ca6954.tar.bz2 |
Fix thumb2 build breakage in libcrypt
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ChangeLog.arm | 5 | ||||
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/arm/Makefile | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm index c5e5f36..d060121 100644 --- a/ports/ChangeLog.arm +++ b/ports/ChangeLog.arm @@ -1,3 +1,8 @@ +2012-11-14 Marcus Shawcroft <marcus.shawcroft@linaro.org> + + * sysdeps/unix/sysv/linux/arm/Makefile (libcrypt-sysdep_routines): Add + libc-do-syscall. + 2012-11-05 Joseph Myers <joseph@codesourcery.com> * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h diff --git a/ports/sysdeps/unix/sysv/linux/arm/Makefile b/ports/sysdeps/unix/sysv/linux/arm/Makefile index d9eb10c..bda3ea9 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/Makefile +++ b/ports/sysdeps/unix/sysv/linux/arm/Makefile @@ -32,6 +32,10 @@ endif # Add a syscall function to each library that needs one. +ifeq ($(subdir),crypt) +libcrypt-sysdep_routines += libc-do-syscall +endif + ifeq ($(subdir),rt) librt-sysdep_routines += libc-do-syscall librt-shared-only-routines += libc-do-syscall |