Skip to content

Commit

Permalink
Build: fix building Kernel/TestModule object
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs authored and awesomekling committed Jan 1, 2020
1 parent 1d94b5e commit 5fa0291
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ OBJS = \

OBJ_SUFFIX = .kernel

MODULE_OBJS = TestModule.o
MODULE_OBJS = TestModule$(OBJ_SUFFIX).o

EXTRA_OBJS = Arch/i386/Boot/boot.ao

Expand Down
2 changes: 1 addition & 1 deletion Kernel/build-root-filesystem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ mkdir -p mnt/boot/
cp kernel mnt/boot/

mkdir -p mnt/mod/
cp TestModule.o mnt/mod
cp TestModule.kernel.o mnt/mod/TestModule.o

# Run local sync script, if it exists
if [ -f sync-local.sh ]; then
Expand Down

0 comments on commit 5fa0291

Please sign in to comment.