Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 821979b

Browse files
Fix wrong variable in Makefile
1 parent fa3d640 commit 821979b

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

‎01_wait_forever/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
5858
KERNEL_ELF = target/$(TARGET)/release/kernel
5959
# This parses cargo's dep-info file.
6060
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
61-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
61+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6262

6363

6464

‎02_runtime_init/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
5858
KERNEL_ELF = target/$(TARGET)/release/kernel
5959
# This parses cargo's dep-info file.
6060
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
61-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
61+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6262

6363

6464

‎03_hacky_hello_world/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
5858
KERNEL_ELF = target/$(TARGET)/release/kernel
5959
# This parses cargo's dep-info file.
6060
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
61-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
61+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6262

6363

6464

‎04_safe_globals/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
5858
KERNEL_ELF = target/$(TARGET)/release/kernel
5959
# This parses cargo's dep-info file.
6060
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
61-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
61+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6262

6363

6464

‎05_drivers_gpio_uart/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6161
KERNEL_ELF = target/$(TARGET)/release/kernel
6262
# This parses cargo's dep-info file.
6363
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
64-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
64+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6565

6666

6767

‎06_uart_chainloader/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6363
KERNEL_ELF = target/$(TARGET)/release/kernel
6464
# This parses cargo's dep-info file.
6565
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
66-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
66+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6767

6868

6969

‎07_timestamps/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6161
KERNEL_ELF = target/$(TARGET)/release/kernel
6262
# This parses cargo's dep-info file.
6363
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
64-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
64+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6565

6666

6767

‎08_hw_debug_JTAG/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6565
KERNEL_ELF = target/$(TARGET)/release/kernel
6666
# This parses cargo's dep-info file.
6767
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
68-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
68+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6969

7070

7171

‎09_privilege_level/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6565
KERNEL_ELF = target/$(TARGET)/release/kernel
6666
# This parses cargo's dep-info file.
6767
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
68-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
68+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6969

7070

7171

‎10_virtual_mem_part1_identity_mapping/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ LAST_BUILD_CONFIG = target/$(BSP).build_config
6565
KERNEL_ELF = target/$(TARGET)/release/kernel
6666
# This parses cargo's dep-info file.
6767
# https://doc.rust-lang.org/cargo/guide/build-cache.html#dep-info-files
68-
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF_RAW).d)) $(LAST_BUILD_CONFIG)
68+
KERNEL_ELF_DEPS = $(filter-out %: ,$(file < $(KERNEL_ELF).d)) $(LAST_BUILD_CONFIG)
6969

7070

7171

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /