Преглед на файлове

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 години
родител
ревизия
d0619fb02c
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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