diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-22 11:10:52 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-22 11:11:13 +0100 |
commit | c3b9bd5ea012112415ad0c05b01562ae39c2e761 (patch) | |
tree | b6a649958be43c0b78c6a9a60392f681993b5a08 /toolchain | |
parent | e6af3264762cf235b15999354230fee6d2f7e3f1 (diff) |
fix DODEBUG and LDSO_GNU_HASH_SUPPORT settings
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uclibc-ng/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toolchain/uclibc-ng/Makefile b/toolchain/uclibc-ng/Makefile index 8fb71208e..630071cca 100644 --- a/toolchain/uclibc-ng/Makefile +++ b/toolchain/uclibc-ng/Makefile @@ -150,7 +150,7 @@ else $(SED) 's/.*\(HAVE_SHARED\).*/# \1 is not set/' ${WRKBUILD}/.config endif ifeq ($(ADK_TARGET_USE_GNU_HASHSTYLE),y) - $(SED) 's/.*\(LDSO_GNU_HASH_SUPPORT\).*/#\1=y/' ${WRKBUILD}/.config + $(SED) 's/.*\(LDSO_GNU_HASH_SUPPORT\).*/\1=y/' ${WRKBUILD}/.config else $(SED) 's/.*\(LDSO_GNU_HASH_SUPPORT\).*/# \1 is not set/' ${WRKBUILD}/.config endif @@ -160,6 +160,9 @@ ifeq ($(ADK_TARGET_USE_SSP),y) echo "SSP_QUICK_CANARY=n" >> ${WRKBUILD}/.config echo "UCLIBC_BUILD_SSP=y" >> ${WRKBUILD}/.config endif +ifeq ($(ADK_DEBUG),y) + $(SED) 's/.*\(DODEBUG\).*/\1=y/' ${WRKBUILD}/.config +endif # # architecture specific options |