Browse Source

bugfix: 用户态程序编译失败的问题

fslongjin 2 years ago
parent
commit
d60f1a8f80
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -38,7 +38,7 @@ kernel:
 .PHONY: user
 user:
 	mkdir -p bin/user/
-	mkdir -p bin/tmp/
+	mkdir -p bin/tmp/user
 	@list='./user'; for subdir in $$list; do \
     		echo "make all in $$subdir";\
     		cd $$subdir;\