Sfoglia il codice sorgente

Use the symbolic name, don't hard code.

Eric Andersen 23 anni fa
parent
commit
10ecb394d4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      extra/gcc-uClibc/Makefile

+ 1 - 1
extra/gcc-uClibc/Makefile

@@ -3,7 +3,7 @@ include $(TOPDIR)Rules.mak
 
 # NOTE: This may need to be modified for your system
 ifeq ($(LDSO_PRESENT), $(TARGET_ARCH))
-	DYNAMIC_LINKER = $(INSTALL_DIR)/lib/ld-linux-uclibc.so.$(MAJOR_VERSION)
+	DYNAMIC_LINKER = $(INSTALL_DIR)/lib/$(UCLIBC_LDSO)
 else
 	DYNAMIC_LINKER=$(SYSTEM_LDSO)
 endif