aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-04-05 17:14:10 -0700
committerChristian Cunningham <cc@localhost>2022-04-05 17:14:10 -0700
commit2f639629c22a6a5fc47d2c7f2135f46dd04c43ea (patch)
tree7d5aaebf6295b982a71ab6c5e2bec01c814f69fe
parentdef38067a79a9f193658be58705afa9c091013ff (diff)
Fixed Variable not Expanding
-rw-r--r--Common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Common.mk b/Common.mk
index 160aef9..eb18947 100644
--- a/Common.mk
+++ b/Common.mk
@@ -148,7 +148,7 @@ test: clean build/kernel.elf
@tput setaf 6 2> /dev/null || true; echo Running Tests; tput sgr0 2> /dev/null || true
@./tests/run.sh
-ifndef $(DISK)
+ifndef DISK
copy:
@tput setaf 1 2> /dev/null || true; echo ERROR: No disk specified!; tput sgr0 2> /dev/null || true
else