Sfoglia il codice sorgente

Remove existing old link before creating a new one

This is needed after a kernel update, otherwise the
new link is written as linux/linux-$(LINUX_VERSION).

Signed-off-by: Stefan Weil <[email protected]>
Stefan Weil 16 anni fa
parent
commit
d0619fb02c
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      toolchain/kernel-headers/Makefile

+ 2 - 1
toolchain/kernel-headers/Makefile

@@ -72,7 +72,8 @@ endef
 
 define Host/Prepare
 	$(call Kernel/Prepare/Default)
-	ln -sf linux-$(LINUX_VERSION) $(BUILD_DIR_TOOLCHAIN)/linux
+	rm -f $(BUILD_DIR_TOOLCHAIN)/linux
+	ln -s linux-$(LINUX_VERSION) $(BUILD_DIR_TOOLCHAIN)/linux
 	$(SED) 's/@expr length/@-expr length/' $(HOST_BUILD_DIR)/Makefile
 endef