Quellcode durchsuchen

Use the symbolic name, don't hard code.

Eric Andersen vor 23 Jahren
Ursprung
Commit
10ecb394d4
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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