Commit cc58ac77 authored by David Anders's avatar David Anders
Browse files

fix target arch check per case 0000688

parent 602b0c8a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ $(UCLIBC_DIR)/.configured: $(UCLIBC_DIR)/.unpacked
		-e 's,^DEVEL_PREFIX=.*,DEVEL_PREFIX=\"/usr/\",g' \
		-e 's,^SHARED_LIB_LOADER_PREFIX=.*,SHARED_LIB_LOADER_PREFIX=\"/lib\",g' \
		$(UCLIBC_DIR)/.config
ifeq ($(UCLIBC_TARGET_ARCH),"arm")
ifeq ($(UCLIBC_TARGET_ARCH),arm)
	$(SED) 's,^.*CONFIG_$(shell echo $(BR2_ARM_TYPE)).*,CONFIG_$(shell echo $(BR2_ARM_TYPE))=y,g' \
	$(UCLIBC_DIR)/.config
endif