From 59d24044b3d6daea498275cf37371f5cb7ba1566 Mon Sep 17 00:00:00 2001 From: Marcel Denia Date: Mon, 30 Nov 2015 01:31:37 +0100 Subject: [PATCH] perl: Fix uClibc handling Configuration scripts expect the libc identifier to be "uclibc" in case we're using it, OpenWrt provides "uClibc". Oh well... Signed-off-by: Marcel Denia --- lang/perl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/perl/Makefile b/lang/perl/Makefile index 6cfd289b7..a1b7f4279 100644 --- a/lang/perl/Makefile +++ b/lang/perl/Makefile @@ -97,7 +97,7 @@ define Build/Configure -Dowrt:target_cross='$(TARGET_CROSS)' \ -Dowrt:cflags='$(TARGET_CFLAGS_PERL) $(TARGET_CPPFLAGS_PERL)' \ -Dowrt:ldflags='-rdynamic $(TARGET_LDFLAGS)' \ - -Dowrt:libc=$(CONFIG_LIBC) \ + -Dowrt:libc=$(subst uClibc,uclibc,$(CONFIG_LIBC)) \ -Dowrt:ipv6=$(if $($(CONFIG_IPV6)),define,undef) \ -Dowrt:threads=$(if $(CONFIG_PERL_THREADS),yes,no) \ -Dowrt:staging_dir='$(STAGING_DIR)' \