diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-06-29 22:25:43 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-06-29 22:25:43 +0000 |
commit | 8d8868cffc07eeb0f6cb3cb285883fb2ae18b76b (patch) | |
tree | 11ee0d65fb25a2af6456668d9f416868350b73b2 /package/libs/gettext-full | |
parent | 4beaccc7d0a47aa0aef724bc3d4a37f083ff6817 (diff) | |
download | upstream-8d8868cffc07eeb0f6cb3cb285883fb2ae18b76b.tar.gz upstream-8d8868cffc07eeb0f6cb3cb285883fb2ae18b76b.tar.bz2 upstream-8d8868cffc07eeb0f6cb3cb285883fb2ae18b76b.zip |
gettext-full: use uclibc workarounds for musl as well
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 41397
Diffstat (limited to 'package/libs/gettext-full')
-rw-r--r-- | package/libs/gettext-full/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/libs/gettext-full/Makefile b/package/libs/gettext-full/Makefile index 11dc1f5643..ca521b4c52 100644 --- a/package/libs/gettext-full/Makefile +++ b/package/libs/gettext-full/Makefile @@ -38,6 +38,9 @@ TARGET_CFLAGS += $(FPIC) ifneq ($(HOST_OS),Linux) TARGET_CFLAGS += -I$(STAGING_DIR_HOST)/include endif +ifdef CONFIG_USE_MUSL + TARGET_CFLAGS += -D__UCLIBC__ +endif CONFIGURE_ARGS += \ --enable-shared \ |